diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-12 11:11:47 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-12 11:38:28 +0100 |
commit | c43ba671c3c8752cfabc7124f39303775acf04e5 (patch) | |
tree | 3786aaefa8b2b17861aa1ae15c7b561ca4042563 | |
parent | 770d60d9049cbc34aee1973d838d33c2945c1c76 (diff) | |
download | rneovim-c43ba671c3c8752cfabc7124f39303775acf04e5.tar.gz rneovim-c43ba671c3c8752cfabc7124f39303775acf04e5.tar.bz2 rneovim-c43ba671c3c8752cfabc7124f39303775acf04e5.zip |
health.vim: Reduce visual noise.
- SUCCESS should be extra green, regardless of colorscheme.
- Do not highlight INFO and SUGGESTIONS, they should not demand the
user's attention.
-rw-r--r-- | runtime/autoload/health.vim | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/runtime/autoload/health.vim b/runtime/autoload/health.vim index 93ca4dfc54..b0791eb19d 100644 --- a/runtime/autoload/health.vim +++ b/runtime/autoload/health.vim @@ -9,17 +9,9 @@ function! s:enhance_syntax() abort \ containedin=markdownCodeBlock,mkdListItemLine highlight link healthWarning WarningMsg - syntax keyword healthInfo INFO - \ containedin=markdownCodeBlock,mkdListItemLine - highlight link healthInfo ModeMsg - syntax keyword healthSuccess SUCCESS \ containedin=markdownCodeBlock,mkdListItemLine - highlight link healthSuccess ModeMsg - - syntax keyword healthSuggestion SUGGESTIONS - \ containedin=markdownCodeBlock,mkdListItemLine - highlight link healthSuggestion String + highlight healthSuccess guibg=#5fff00 guifg=#080808 ctermbg=82 ctermfg=232 syntax match healthHelp "|.\{-}|" contains=healthBar \ containedin=markdownCodeBlock,mkdListItemLine |