···11return {
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 and `awesome`
1010- globals = { "vim", "use", "beautiful", "awful" },
1111- },
1212- workspace = {
1313- -- Make the server aware of Neovim runtime files
1414- library = vim.api.nvim_get_runtime_file("", true),
1515- checkThirdParty = false,
1616- },
1717- hint = {
1818- enable = true,
1919- },
2020- telemetry = {
2121- enable = false,
2222- },
2323- },
2424- },
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 and `awesome`
1010+ globals = { "vim", "use", "beautiful", "awful" },
1111+ },
1212+ workspace = {
1313+ -- Make the server aware of Neovim runtime files
1414+ library = vim.api.nvim_get_runtime_file("", true),
1515+ checkThirdParty = false,
1616+ },
1717+ hint = {
1818+ enable = true,
1919+ },
2020+ telemetry = {
2121+ enable = false,
2222+ },
2323+ },
2424+ },
2525}