summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/home/i3wm/nord-blue/default.nix1
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix18
2 files changed, 19 insertions, 0 deletions
diff --git a/modules/home/i3wm/nord-blue/default.nix b/modules/home/i3wm/nord-blue/default.nix
index 2e11b02..0be0753 100644
--- a/modules/home/i3wm/nord-blue/default.nix
+++ b/modules/home/i3wm/nord-blue/default.nix
@@ -4,6 +4,7 @@
imports = [
./alacritty.nix
./i3.nix
+ ./nvim.nix
./picom.nix
];
} \ No newline at end of file
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix
new file mode 100644
index 0000000..a8ab8a9
--- /dev/null
+++ b/modules/home/i3wm/nord-blue/nvim.nix
@@ -0,0 +1,18 @@
+{ pkgs, config, lib, ... }:
+
+{
+ programs.neovim = {
+ enable = true;
+ defaultEditor = true;
+ viAlias = true;
+ vimAlias = true;
+
+ plugins = [
+ pkgs.vimPlugins.nvim-tree-lua
+ {
+ plugin = pkgs.vimPlugins.vim-startify;
+ config = "let g:startify_change_to_vcs_root = 0";
+ }
+ ];
+ };
+} \ No newline at end of file