From c71446ee152cf1a643f5d9b0e40b1f2e5f39fecb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Thu, 7 Aug 2025 23:07:49 +0200 Subject: [PATCH] feat(nvim): enable lsp signs and disable virtual lines --- .../plugins/extras/lsp/lspconfig-extended.lua | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/lsp/lspconfig-extended.lua b/.config/nvim/lua/plugins/extras/lsp/lspconfig-extended.lua index be31ae69..9e8f5166 100644 --- a/.config/nvim/lua/plugins/extras/lsp/lspconfig-extended.lua +++ b/.config/nvim/lua/plugins/extras/lsp/lspconfig-extended.lua @@ -21,21 +21,7 @@ return { end, opts = { diagnostics = { - signs = false, - virtual_text = { - float = { - border = { - { "┌", "FloatBorder" }, - { "─", "FloatBorder" }, - { "┐", "FloatBorder" }, - { "│", "FloatBorder" }, - { "┘", "FloatBorder" }, - { "─", "FloatBorder" }, - { "└", "FloatBorder" }, - { "│", "FloatBorder" }, - }, - }, - }, + virtual_text = false, }, inlay_hints = { enabled = nvim_0_10,