diff options
Diffstat (limited to 'modules/home/i3wm/nord-blue/nvim.nix')
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 18 |
1 files changed, 18 insertions, 0 deletions
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 |
