summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-11-08 09:43:36 +0100
committerEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-11-08 09:43:36 +0100
commit8bd522f21d393b4db0ab9cf4216f5ff3794928eb (patch)
tree484b262afb403b34fc7187fd267195a5bc7d0ed4 /nvim
parent87bc403d0a7f36e003c71fc6cf6a84df385b15d3 (diff)
[NeoVim] SpellBad Red and Underline for GUI (and TrueColor)
Diffstat (limited to 'nvim')
-rw-r--r--nvim/nvim/ftplugin/markdown.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/nvim/ftplugin/markdown.vim b/nvim/nvim/ftplugin/markdown.vim
index f97c612..b85b977 100644
--- a/nvim/nvim/ftplugin/markdown.vim
+++ b/nvim/nvim/ftplugin/markdown.vim
@@ -12,7 +12,7 @@ augroup END
" Highlight spelling errors in red and underline
hi clear SpellBad
-hi SpellBad cterm=underline ctermfg=Red
+hi SpellBad cterm=underline ctermfg=Red guifg=Red gui=underline
" Tabs to 2 spaces
set tabstop=2 softtabstop=0 expandtab shiftwidth=2