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