You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
646 B

return {
settings = {
Lua = {
-- Make the language server recognize "vim" global
diagnostics = {
globals = { "vim" },
},
workspace = {
-- Make language server aware of runtime files
library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.stdpath("config") .. "/lua"] = true,
},
-- Disable the luassert warning
checkThirdParty = false,
},
telemetry = {
enable = false,
},
},
},
}