From 681e3c80c500aaceceb614f31ff741aeeb8686d2 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 29 Dec 2024 12:01:04 +0100 Subject: [PATCH] nvim/lua/user/options.lua: show underline for diagnostics --- nvim/lua/user/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/user/options.lua b/nvim/lua/user/options.lua index 92a06b2..ba5d661 100644 --- a/nvim/lua/user/options.lua +++ b/nvim/lua/user/options.lua @@ -87,7 +87,7 @@ vim.o.spelllang = 'en_us' vim.diagnostic.config({ virtual_text = false, severity_sort = true, - underline = false, + underline = true, signs = { text = { [vim.diagnostic.severity.ERROR] = icons.diagnostics.error,