···11+return {
22+ settings = {
33+ Lua = {
44+ runtime = {
55+ -- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
66+ version = "LuaJIT"
77+ },
88+ diagnostics = {
99+ -- Get the language server to recognize the `vim` global
1010+ globals = { "vim", "vis" }
1111+ },
1212+ workspace = {
1313+ -- Make the server aware of Neovim runtime files
1414+ library = vim.api.nvim_get_runtime_file("", true)
1515+ },
1616+ -- Do not send telemetry data containing a randomized but unique identifier
1717+ telemetry = { enable = false }
1818+ }
1919+ }
2020+}