From f461bd1125e7407c6ff6489d891b45ec868d2637 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Wed, 11 Feb 2026 17:35:12 +0100 Subject: added neovim config --- modules/home/i3wm/nord-blue/default.nix | 1 + modules/home/i3wm/nord-blue/nvim.nix | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 modules/home/i3wm/nord-blue/nvim.nix (limited to 'modules/home/i3wm/nord-blue') 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 -- cgit v1.2.3