1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-01 23:19:25 +00:00

[neovim] Update plugins

This commit is contained in:
2022-10-10 18:36:24 +02:00
parent 731ec1713c
commit adefa851d7
5 changed files with 32 additions and 10 deletions

View File

@ -11,7 +11,6 @@ M.capabilities = cmp_nvim_lsp.update_capabilities(M.capabilities)
M.setup = function()
local signs = {
{ name = "DiagnosticSignError", text = "" },
{ name = "DiagnosticSignWarn", text = "" },
{ name = "DiagnosticSignHint", text = "" },
@ -23,9 +22,9 @@ M.setup = function()
end
local config = {
virtual_text = false, -- disable virtual text
virtual_text = false,
signs = {
active = signs, -- show signs
active = signs,
},
update_in_insert = true,
underline = true,