pkgs(nixvim): Use nixvim to precompile lua to byte code
This commit is contained in:
parent
0bae976b08
commit
419edec01f
1 changed files with 16 additions and 0 deletions
|
|
@ -9,5 +9,21 @@ makeNixvimWithModule {
|
||||||
imports = with lib; youthlic.loadImports' ./. (filter (name: !hasSuffix "/package.nix" (toString name)));
|
imports = with lib; youthlic.loadImports' ./. (filter (name: !hasSuffix "/package.nix" (toString name)));
|
||||||
enableMan = true;
|
enableMan = true;
|
||||||
plugins.lualine.enable = true;
|
plugins.lualine.enable = true;
|
||||||
|
performance = {
|
||||||
|
# combinePlugins = {
|
||||||
|
# enable = true;
|
||||||
|
# standalonePlugins = [];
|
||||||
|
# };
|
||||||
|
byteCompileLua = {
|
||||||
|
enable = true;
|
||||||
|
configs = true;
|
||||||
|
initLua = true;
|
||||||
|
luaLib = true;
|
||||||
|
nvimRuntime = true;
|
||||||
|
plugins = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
wrapRc = true;
|
||||||
|
luaLoader.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue