mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2025-01-08 10:39:10 +00:00
17 lines
239 B
Lua
17 lines
239 B
Lua
|
return {
|
||
|
settings = {
|
||
|
|
||
|
Lua = {
|
||
|
diagnostics = {
|
||
|
globals = { "vim" },
|
||
|
},
|
||
|
workspace = {
|
||
|
library = {
|
||
|
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
|
||
|
[vim.fn.stdpath("config") .. "/lua"] = true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|