nvim/lua/lsp/lua_ls.lua
2026-02-04 15:18:34 -05:00

25 lines
563 B
Lua

-- Lua language server configuration
return {
settings = {
Lua = {
diagnostics = {
globals = { "vim" },
},
runtime = {
version = "LuaJIT",
},
workspace = {
checkThirdParty = false,
library = {
vim.env.VIMRUNTIME,
},
},
telemetry = {
enable = false,
},
hint = {
enable = true,
},
},
},
}