nvim/lua/cosmic/lsp/providers/sumneko_lua.lua
2021-12-20 15:26:16 -08:00

19 lines
489 B
Lua

return {
settings = {
Lua = {
diagnostics = {
-- Get the language server to recognize the `vim` global
globals = { 'vim' },
},
workspace = {
-- Make the server aware of Neovim runtime files
library = {
[vim.fn.expand('$VIMRUNTIME/lua')] = true,
[vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true,
[vim.fn.stdpath('config') .. '/lua'] = true,
},
maxPreload = 10000,
},
},
},
}