feat(nvim): improve startup time by combining plugins #138

Merged
jalil merged 1 commit from nvim-faster-startup into main 2024-11-07 18:57:27 +01:00
3 changed files with 1 additions and 5 deletions
Showing only changes of commit bbb209135e - Show all commits

View file

@ -114,7 +114,6 @@ in
extraPackages = [ extraPackages = [
pkgs.dash pkgs.dash
pkgs.statix pkgs.statix
pkgs.zsh
]; ];
plugins.lint = { plugins.lint = {
enable = true; enable = true;

View file

@ -85,10 +85,6 @@ in
name = "treesitter"; name = "treesitter";
groupIndex = 2; groupIndex = 2;
} }
{
name = "zsh";
groupIndex = 1;
}
]; ];
mapping = mapping =
mkRaw mkRaw

View file

@ -49,6 +49,7 @@
# Enable local configuration :h 'exrc' # Enable local configuration :h 'exrc'
exrc = true; # safe since nvim 0.9 exrc = true; # safe since nvim 0.9
}; };
performance.combinePlugins.enable = true;
extraPlugins = extraPlugins =
let let
plugins = pkgs.vimPlugins; plugins = pkgs.vimPlugins;