[Nvim] Let Lazy handle plugins?

This commit is contained in:
2025-02-07 18:30:55 -08:00
parent cee054498a
commit bbaa20a515
7 changed files with 89 additions and 12 deletions

View File

@@ -11,11 +11,6 @@ let
};
in
{
home.file.".config/nvim" = {
source = ./config/neovim;
recursive = true;
};
programs.neovim = {
enable = true;
viAlias = true;
@@ -23,13 +18,14 @@ in
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
nvim-treesitter.withAllGrammars
surround-nvim
telescope-nvim
plenary-nvim # dependency of telescope
rnvimr
(fromGitHub "decaycs/decay.nvim" "HEAD" "457014541ebcfb29bd660592a0b02f22c9e2d0e2")
auto-session
# treesitterWithGrammars
lazy-nvim
# surround-nvim
# telescope-nvim
# plenary-nvim # dependency of telescope
# rnvimr
# (fromGitHub "decaycs/decay.nvim" "HEAD" "457014541ebcfb29bd660592a0b02f22c9e2d0e2")
# auto-session
];
extraPackages = with pkgs; [
@@ -39,4 +35,9 @@ in
fd # finder for telescope
];
};
home.file.".config/nvim" = {
source = ./config/neovim;
recursive = true;
};
}