This commit is contained in:
Daniel Carrillo 2023-03-12 13:58:45 +01:00
parent 6567e2daae
commit ff52cc24f0
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
3 changed files with 15 additions and 4 deletions

View File

@ -50,12 +50,12 @@ M.setup = function()
end
M.on_attach = function(client)
if client.name == "tsserver" then
if client.name == "lua_ls" then
client.server_capabilities.document_formatting = false
end
if client.name == "lua_ls" then
client.server_capabilities.document_formatting = false
if client.name == "ruff-lsp" then
client.server_capabilities.hover = false
end
local status_ok, illuminate = pcall(require, "illuminate")

View File

@ -5,8 +5,9 @@ local servers = {
"html",
"jdtls",
"jsonls",
"pyright",
"lua_ls",
"pyright",
"ruff_lsp",
"terraformls",
"yamlls",
}

View File

@ -0,0 +1,10 @@
return {
settings = {
python = {
analysis = {
autoSearchPaths = true,
useLibraryCodeForTypes = true,
},
},
},
}