feat: autopairs

This commit is contained in:
♥ Minnie ♥ 2025-04-10 09:27:22 +08:00
parent 4fa4cae772
commit 512f8912c4
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 7 additions and 0 deletions

View file

@ -12,6 +12,7 @@
./plugins/cmp/copilot.nix ./plugins/cmp/copilot.nix
# Editor plugins and configurations # Editor plugins and configurations
./plugins/editor/autopairs.nix
./plugins/editor/bufdelete.nix ./plugins/editor/bufdelete.nix
./plugins/editor/comment.nix ./plugins/editor/comment.nix
./plugins/editor/treesitter.nix ./plugins/editor/treesitter.nix

View file

@ -0,0 +1,6 @@
{...}: {
plugins.nvim-autopairs = {
enable = true;
};
}