aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-06 17:47:28 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-03-06 17:47:28 +0100
commit833a9a266fa7bd065f3e0e0056a86b81f933bd36 (patch)
tree850853b5680f94e2866e419927de4329dcf13a70
parente84c421e6f28cf3309adece93710cb98df1df819 (diff)
added comment toggling and bracket completion in the nvim config
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix9
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
-------------------------------------------------