diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 7a188e5..9b52aa4 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -6,6 +6,7 @@ ./qt/retro ./terminal ./oh-my-posh + ./neovim ]; # Allow Unfree diff --git a/modules/home-manager/neovim/default.nix b/modules/home-manager/neovim/default.nix new file mode 100644 index 0000000..4257e2d --- /dev/null +++ b/modules/home-manager/neovim/default.nix @@ -0,0 +1,12 @@ +{ ... }: + +{ + programs.neovim = { + enable = true; + defaultEditor = true; + + plugins = with pkgs.vimPlugins; [ + lazyvim + ]; + }; +} \ No newline at end of file