Files
nvim/after/lsp/lua_ls.lua
2026-06-02 14:50:36 +03:00

21 lines
374 B
Lua

---@type vim.lsp.Config
local settings = {
---@type lspconfig.settings.lua_ls
settings = {
Lua = {
hint = {
enable = true,
},
runtime = {
version = "LuaJIT",
},
workspace = {
checkThirdParty = false,
library = vim.list_extend({ vim.fn.expand("$VIMRUNTIME") }, vim.api.nvim_get_runtime_file("lua", true)),
},
},
},
}
return settings