From e6058167d00fa3edf0021afaf0e538ea1d01af9a Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Mon, 15 Sep 2025 21:33:27 -0600 Subject: [PATCH] Update diagnostic config to be less obnoxious --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 47a8316..46f3409 100644 --- a/init.lua +++ b/init.lua @@ -5,7 +5,7 @@ vim.keymap.set('n', 'f', 'Oil --float . ', { desc = "Find files vim.diagnostic.config({ virtual_text = true, -- Display diagnostics as inline text -- Other options can be added here, like: - -- signs = true, -- Show icons in the gutter - -- underline = true, -- Highlight the affected text + signs = false, -- Show icons in the gutter + underline = true, -- Highlight the affected text }) vim.cmd 'colorscheme atom-dark-256'