diff --git a/home-manager/common/software/cli/neovim.nix b/home-manager/common/software/cli/neovim.nix index 6d999299..a14fc929 100644 --- a/home-manager/common/software/cli/neovim.nix +++ b/home-manager/common/software/cli/neovim.nix @@ -7,7 +7,7 @@ vimAlias = true; vimdiffAlias = true; plugins = with pkgs.vimPlugins; [ - nvchad + LazyVim fugitive fzf-vim fzf-lua @@ -28,14 +28,14 @@ # Link the nvchad files to my homedir # https://mipmip.github.io/home-manager-option-search/?query=xdg.dataFile xdg.configFile."nvim" = { - enable = true; + enable = false; recursive = true; source = "${pkgs.vimPlugins.nvchad}/"; target = "./nvim"; }; xdg.configFile."nvim-custom-plugins" = { - enable = true; + enable = false; target = "./nvim/lua/custom/plugins.lua"; text = '' local overrides = require("custom.configs.overrides")