Nvim: autoclose

This commit is contained in:
Filippo Berto 2024-01-19 16:35:47 +01:00
parent 4c2253a42e
commit 87aaa16b07
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056

View file

@ -23,6 +23,13 @@ let vp = pkgs.vimPlugins; in {
type = "lua";
config = ''require("nvim-surround").setup({})'';
}
{
plugin = vp.autoclose-nvim;
type = "lua";
config = ''
require("autoclose").setup({})
'';
}
vp.telescope-fzf-native-nvim
{