summaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home')
-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
+ ];
+ };
+}