use straight uinderlines instead

This commit is contained in:
Ray Elliott 2026-01-19 15:05:37 +00:00
parent 5c7a63ab8d
commit 0a354b3d13
1 changed files with 5 additions and 6 deletions

View File

@ -94,13 +94,12 @@ return {
-- Spelling -- 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 -- sp (special) sets the underline color, separate from text foreground
-- Both underline and undercurl for terminal compatibility SpellBad = { sp = c.diag_error, underline = true }, -- Serious error: hot pink-red underline
SpellBad = { sp = c.diag_error, underline = true, undercurl = true }, -- Serious error: hot pink-red underline SpellCap = { sp = c.diag_warn, underline = true }, -- Capitalization: orange underline
SpellCap = { sp = c.diag_warn, underline = true, undercurl = true }, -- Capitalization: orange underline SpellLocal = { sp = c.diag_weak, underline = true }, -- Wrong region: lighter orange underline
SpellLocal = { sp = c.diag_weak, underline = true, undercurl = true }, -- Wrong region: lighter orange underline SpellRare = { sp = c.diag_weak, underline = true }, -- Rare word: lighter orange underline
SpellRare = { sp = c.diag_weak, underline = true, undercurl = true }, -- Rare word: lighter orange underline
-- ============================================================================ -- ============================================================================
-- Messages & Prompts -- Messages & Prompts