nixvim/config/plugins/cmp/autopairs.nix
Roel de Cort 48bbb7951d
feat: autopairs, cursor restore and rename option (#15)
Add the nvim-autopairs so "'{[ characters will auto close.
Add AutoCmd to restore the cursor position when re-opening file.
Fix treesitter option name.
2024-07-25 22:57:29 +02:00

8 lines
133 B
Nix

{
plugins.nvim-autopairs = {
enable = true;
settings = {
disable_filetype = ["TelescopePrompt" "vim"];
};
};
}