1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2026-04-28 07:21:34 +00:00
Files
dotfiles/.config/nvim/lua/plugins/lsp/settings/lua_ls.lua
T
2023-02-13 19:44:51 +01:00

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,
},
},
},
}