19 lines
329 B
Lua
19 lines
329 B
Lua
|
return {
|
||
|
settings = {
|
||
|
Lua = {
|
||
|
diagnostics = {
|
||
|
globals = { "vim" },
|
||
|
},
|
||
|
workspace = {
|
||
|
library = {
|
||
|
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
||
|
[vim.fn.stdpath "config" .. "/lua"] = true,
|
||
|
},
|
||
|
},
|
||
|
telemetry = {
|
||
|
enable = false,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|