19 lines
489 B
Lua
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,
|
|
},
|
|
},
|
|
},
|
|
}
|