Update neovim

This commit is contained in:
Kristofers Solo
2022-08-27 21:53:40 +03:00
parent 374863da12
commit b0d56edd56
11 changed files with 138 additions and 80 deletions

View File

@@ -85,6 +85,15 @@ M.on_attach = function(client, bufnr)
if client.name == "sumneko_lua" then
client.resolved_capabilities.document_formatting = false
end
if client.name == "diagnosticls" then
client.resolved_capabilities.document_formatting = false
end
if client.name == "html" then
client.resolved_capabilities.document_formatting = false
end
if client.name == "jsonls" then
client.resolved_capabilities.document_formatting = false
end
lsp_keymaps(bufnr)
lsp_highlight_document(client)
end