diff options
| author | iamcheeseman <[email protected]> | 2026-04-18 11:18:23 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-04-18 11:18:23 -0400 |
| commit | f0bf896d1372c69d8ad7889564a28168954d8123 (patch) | |
| tree | b8d21aa614a7fb4ea14f6362a6ea314b75aad4fb /.config/nvim/lsp/lua_ls.lua | |
| parent | 08fa714b600045802d0ef1474291b17448dee272 (diff) | |
update
Diffstat (limited to '.config/nvim/lsp/lua_ls.lua')
| -rw-r--r-- | .config/nvim/lsp/lua_ls.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/nvim/lsp/lua_ls.lua b/.config/nvim/lsp/lua_ls.lua new file mode 100644 index 0000000..ace2329 --- /dev/null +++ b/.config/nvim/lsp/lua_ls.lua @@ -0,0 +1,17 @@ +return { + cmd = {"lua-language-server"}, + filetypes = {"lua"}, + root_markers = {".luarc.json", ".git"}, + settings = { + Lua = { + runtime = { + version = "LuaJIT", + }, + diagnostics = { + disable = { + "lowercase-global", + }, + }, + }, + }, +} |
