dotfiles/.config/nvim/lua/user/lsp/settings/sumneko_lua.lua
2022-12-24 20:25:37 +05:30

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,
},
},
},
},
}