From 51b9b6ff5fded9ae43fa33b0ec2f1b2a19c1b4ed Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 7 Feb 2024 12:48:06 +0900 Subject: [PATCH] test --- home-manager/common/software/cli/neovim.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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")