pojokcodeid.nvim-lazy/lua/user/lsp/settings/lua_ls.lua

17 lines
239 B
Lua
Raw Normal View History

2024-02-19 20:29:46 +07:00
return {
settings = {
Lua = {
diagnostics = {
globals = { "vim" },
},
workspace = {
library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.stdpath("config") .. "/lua"] = true,
},
},
},
},
}