summaryrefslogtreecommitdiff
path: root/modules/home/nvim.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-18 21:50:26 -0600
committerChristian <[email protected]>2026-01-18 21:50:26 -0600
commit875c8e5d08e463322e44bf66e8a5d4caa562bd4f (patch)
treecdd60bce20932ad93addb685b453f50a7e26d472 /modules/home/nvim.nix
parent87be0d3dd54e71f33b9d8a757273ae4f2170e3f0 (diff)
Neovim config
Diffstat (limited to 'modules/home/nvim.nix')
-rw-r--r--modules/home/nvim.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/home/nvim.nix b/modules/home/nvim.nix
new file mode 100644
index 0000000..f715f75
--- /dev/null
+++ b/modules/home/nvim.nix
@@ -0,0 +1,12 @@
+{ pkgs, ... }: {
+ programs.neovim = {
+ enable = true;
+ defaultEditor = true;
+ viAlias = true;
+ vimAlias = true;
+
+ plugins = with pkgs.vimPlugins; [
+ nvim-treesitter.withAllGrammars
+ ];
+ };
+}