Add site dir to rtp for spell files

This commit is contained in:
2025-01-18 00:25:15 +01:00
parent ddc6b148c3
commit 0ca6cbade3
+6 -2
View File
@@ -49,7 +49,7 @@
map (p:
lib.pipe p [
builder.byteCompile
# we removeDependencies after byteCompiling because byteCompile resets the derivation to it's inital state
# we removeDependencies after byteCompiling because byteCompile resets the derivation to it's initial state
# (with dependencies and idk why)
removeDependencies
])
@@ -75,6 +75,7 @@
"${conf}",
"${pluginPack}/pack/packages/start/vimplugin-plugin-pack",
vim.env.VIMRUNTIME,
vim.fn.stdpath('data') .. "/site",
"${conf}/after",
}
vim.opt.packpath = {
@@ -95,5 +96,8 @@ in {
inherit withPython3 withNodeJs withPerl withRuby extraPython3Packages extraLuaPackages;
};
nvim-luarc = mkLuarc { nvim = package; inherit plugins; };
nvim-luarc = mkLuarc {
nvim = package;
inherit plugins;
};
}