moved lsp server config to after dir

This commit is contained in:
2025-04-20 23:34:31 +02:00
parent 23dd1811ee
commit df0db24702
5 changed files with 69 additions and 68 deletions

22
after/lsp/lua_ls.lua Normal file
View File

@@ -0,0 +1,22 @@
return {
settings = {
Lua = {
workspace = {
checkThirdParty = false,
},
completion = {
callSnippet = 'Replace',
},
-- Do not send telemetry data containing a randomized but unique identifier
telemetry = {
enable = false,
},
diagnostics = {
disable = { 'missing-fields' },
},
format = {
enable = false,
},
},
},
}