nvim-config/Saved/lsp/settings/lua_ls.lua
2025-05-16 22:03:34 -05:00

16 lines
239 B
Lua

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