[Nvim] Let Lazy handle plugins?
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user