From 221ffec92cbad71d5e6ece80aba3bc8ae8df1351 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Thu, 6 Aug 2020 19:45:41 +0300 Subject: [PATCH] [nvim] fix spelling errors being unreadable with highlighting --- nvim/colors/dotfiles.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/colors/dotfiles.vim b/nvim/colors/dotfiles.vim index 7d3d56b..926a384 100644 --- a/nvim/colors/dotfiles.vim +++ b/nvim/colors/dotfiles.vim @@ -379,8 +379,8 @@ " }}} " Spelling {{{ - call s:hi('SpellBad', '', '', 'undercurl', 0x8) - call s:hi('SpellLocal', '', '', 'undercurl', 0xC) - call s:hi('SpellCap', '', '', 'undercurl', 0xD) - call s:hi('SpellRare', '', '', 'undercurl', 0xE) + call s:hi('SpellBad', 'bg', '', 'undercurl', 0x8) + call s:hi('SpellLocal', 'bg', '', 'undercurl', 0xC) + call s:hi('SpellCap', 'bg', '', 'undercurl', 0xD) + call s:hi('SpellRare', 'bg', '', 'undercurl', 0xE) " }}}