From 0a354b3d136d139063e166fbe262537a607fa3df Mon Sep 17 00:00:00 2001 From: ray Date: Mon, 19 Jan 2026 15:05:37 +0000 Subject: [PATCH] use straight uinderlines instead --- lua/paper-tonic-modern/groups/editor.lua | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lua/paper-tonic-modern/groups/editor.lua b/lua/paper-tonic-modern/groups/editor.lua index 0555ff5..9afc2bc 100644 --- a/lua/paper-tonic-modern/groups/editor.lua +++ b/lua/paper-tonic-modern/groups/editor.lua @@ -94,13 +94,12 @@ return { -- Spelling -- ============================================================================ - -- Spelling errors: normal text color with bright colored underline + -- Spelling errors: normal text color with bright colored straight underline -- sp (special) sets the underline color, separate from text foreground - -- Both underline and undercurl for terminal compatibility - SpellBad = { sp = c.diag_error, underline = true, undercurl = true }, -- Serious error: hot pink-red underline - SpellCap = { sp = c.diag_warn, underline = true, undercurl = true }, -- Capitalization: orange underline - SpellLocal = { sp = c.diag_weak, underline = true, undercurl = true }, -- Wrong region: lighter orange underline - SpellRare = { sp = c.diag_weak, underline = true, undercurl = true }, -- Rare word: lighter orange underline + SpellBad = { sp = c.diag_error, underline = true }, -- Serious error: hot pink-red underline + SpellCap = { sp = c.diag_warn, underline = true }, -- Capitalization: orange underline + SpellLocal = { sp = c.diag_weak, underline = true }, -- Wrong region: lighter orange underline + SpellRare = { sp = c.diag_weak, underline = true }, -- Rare word: lighter orange underline -- ============================================================================ -- Messages & Prompts