aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm/nord-blue/nvim.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-11 17:35:12 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-11 17:35:12 +0100
commitf461bd1125e7407c6ff6489d891b45ec868d2637 (patch)
treebded75f9978cf1e098e44fe8515694337b8e1f67 /modules/home/i3wm/nord-blue/nvim.nix
parentf083ab8d93b6adfa78accacf837cc7c3ec8d1118 (diff)
added neovim config
Diffstat (limited to 'modules/home/i3wm/nord-blue/nvim.nix')
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix18
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