nvim-config/lua/Saved/lsp/settings/lua_ls.lua
2025-05-16 13:05:57 -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,
},
},
},
},
}