nvim/lua/cosmic/lsp/providers/lua_ls.lua
2023-02-13 07:41:21 -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,
},
},
},
}