aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm/nord-blue
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
parentf083ab8d93b6adfa78accacf837cc7c3ec8d1118 (diff)
added neovim config
Diffstat (limited to 'modules/home/i3wm/nord-blue')
-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