fix: don't include Lua wrapper
It's not required and unncessary
This commit is contained in:
parent
d6c2ca4d6e
commit
7d62e435c3
1 changed files with 26 additions and 28 deletions
54
flake.nix
54
flake.nix
|
@ -89,36 +89,34 @@
|
|||
in {
|
||||
runtime.version = "LuaJIT";
|
||||
runtime.path = ["?.lua" "?/init.lua"];
|
||||
Lua = {
|
||||
globals =
|
||||
globals =
|
||||
[
|
||||
"vim"
|
||||
]
|
||||
++ globals;
|
||||
workspace = {
|
||||
library =
|
||||
[
|
||||
"vim"
|
||||
"${nvim}/share/nvim/runtime/lua"
|
||||
"\${3rd}/busted/library"
|
||||
"\${3rd}/luassert/library"
|
||||
]
|
||||
++ globals;
|
||||
workspace = {
|
||||
library =
|
||||
[
|
||||
"${nvim}/share/nvim/runtime/lua"
|
||||
"\${3rd}/busted/library"
|
||||
"\${3rd}/luassert/library"
|
||||
]
|
||||
++ plugin-luadirs
|
||||
++ pkg-libdirs
|
||||
++ pkg-sharedirs
|
||||
++ (lib.optional (meta.luvit or false) "${luvit-meta}/library");
|
||||
ignoreDir = [
|
||||
".git"
|
||||
".github"
|
||||
".direnv"
|
||||
"result"
|
||||
"nix"
|
||||
"doc"
|
||||
];
|
||||
};
|
||||
diagnostics = {
|
||||
libraryFiles = "Disable";
|
||||
disable = disabled-diagnostics;
|
||||
};
|
||||
++ plugin-luadirs
|
||||
++ pkg-libdirs
|
||||
++ pkg-sharedirs
|
||||
++ (lib.optional (meta.luvit or false) "${luvit-meta}/library");
|
||||
ignoreDir = [
|
||||
".git"
|
||||
".github"
|
||||
".direnv"
|
||||
"result"
|
||||
"nix"
|
||||
"doc"
|
||||
];
|
||||
};
|
||||
diagnostics = {
|
||||
libraryFiles = "Disable";
|
||||
disable = disabled-diagnostics;
|
||||
};
|
||||
};
|
||||
luarc-to-json = luarc:
|
||||
|
|
Loading…
Reference in a new issue