diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-06 17:47:28 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-06 17:47:28 +0100 |
| commit | 833a9a266fa7bd065f3e0e0056a86b81f933bd36 (patch) | |
| tree | 850853b5680f94e2866e419927de4329dcf13a70 | |
| parent | e84c421e6f28cf3309adece93710cb98df1df819 (diff) | |
added comment toggling and bracket completion in the nvim config
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix index 71a548e..7c171d4 100644 --- a/modules/home/i3wm/nord-blue/nvim.nix +++ b/modules/home/i3wm/nord-blue/nvim.nix @@ -63,9 +63,11 @@ cmp_luasnip luasnip friendly-snippets + nvim-autopairs # Formatting conform-nvim + comment-nvim # Navigation telescope-nvim @@ -155,6 +157,10 @@ }, }) + + -- BRACKET PAIRS + require("nvim-autopairs").setup({}) + ------------------------------------------------- -- LSP ------------------------------------------------- @@ -195,6 +201,9 @@ }, }) + -- COMMENT TOGGLING + require("Comment").setup() + ------------------------------------------------- -- TELESCOPE ------------------------------------------------- |
