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

17 lines
255 B
Lua
Raw Normal View History

2023-01-15 00:17:41 +07:00
return {
settings = {
Lua = {
diagnostics = {
globals = { "vim" },
},
workspace = {
library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.stdpath("config") .. "/lua"] = true,
},
},
},
},
}