fix(nvim): disable virtual text when using lsp_lines

This commit is contained in:
Price Hiller 2024-06-13 12:37:00 -05:00
parent a449aef214
commit 09714b2a84
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -56,7 +56,12 @@ return {
desc = "LSP: Toggle Diagnostic Style", desc = "LSP: Toggle Diagnostic Style",
}, },
}, },
config = true, config = function()
vim.diagnostic.config({
virtual_text = false,
})
require("lsp_lines").setup()
end,
}, },
{ {
"smjonas/inc-rename.nvim", "smjonas/inc-rename.nvim",