diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-11 17:35:12 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-11 17:35:12 +0100 |
| commit | f461bd1125e7407c6ff6489d891b45ec868d2637 (patch) | |
| tree | bded75f9978cf1e098e44fe8515694337b8e1f67 | |
| parent | f083ab8d93b6adfa78accacf837cc7c3ec8d1118 (diff) | |
added neovim config
| -rw-r--r-- | modules/home/i3wm/nord-blue/default.nix | 1 | ||||
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 18 |
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 |
