From 6c46530516d53f9b596a634fd35107fa6480291c Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Thu, 24 Jul 2025 19:16:54 -0300 Subject: [PATCH] feat(lsp): enable virtual text diagnostics --- lua/dot013/plugins/lsp.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/dot013/plugins/lsp.lua b/lua/dot013/plugins/lsp.lua index 670ee64..c7d98cf 100644 --- a/lua/dot013/plugins/lsp.lua +++ b/lua/dot013/plugins/lsp.lua @@ -71,6 +71,10 @@ return { lsp[k].setup(v) end + + vim.diagnostic.config({ + virtual_text = true, + }) end, },