mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-01 14:21:12 +00:00
19 lines
281 B
Lua
19 lines
281 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,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|