nvim/lua/cosmic/lsp/providers/lua.lua
2021-11-05 17:22:47 -07:00

18 lines
434 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,
},
maxPreload = 10000,
},
},
},
}