nvim-config/lua/user/lsp/settings/lua_ls.lua
2023-07-14 17:40:38 +03:00

20 lines
601 B
Lua

return {
settings = {
Lua = {
runtime = {
version = "LuaJIT", -- Tell the language server which version of Lua you"re using (most likely LuaJIT in the case of Neovim)
},
diagnostics = {
globals = { "vim" }, -- Get the language server to recognize the `vim` global
},
workspace = {
library = vim.api.nvim_get_runtime_file("", true), -- Make the server aware of Neovim runtime files
},
-- Do not send telemetry data containing a randomized but unique identifier
telemetry = {
enable = false,
},
},
},
}