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

View file

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

View file

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

View file

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