mirror of https://github.com/qpixel/dotfiles.git
18 lines
378 B
Lua
18 lines
378 B
Lua
return {
|
|
on_attach = astronvim.lsp.disable_formatting,
|
|
settings = {
|
|
Lua = {
|
|
diagnostics = {
|
|
globals = { "vim" },
|
|
},
|
|
workspace = {
|
|
library = {
|
|
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
|
[astronvim.install.home .. "/lua"] = true,
|
|
[astronvim.install.config .. "/lua"] = true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|