SoloVim/lua/user/mason/settings/lua_ls.lua
2023-02-25 22:56:55 +02:00

19 lines
281 B
Lua

return {
settings = {
Lua = {
diagnostics = {
globals = { "vim" },
},
workspace = {
library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.stdpath("config") .. "/lua"] = true,
},
},
telemetry = {
enable = false,
},
},
},
}