diff options
author | Rom Grk <romgrk.cc@gmail.com> | 2020-10-18 22:28:19 -0400 |
---|---|---|
committer | Rom Grk <romgrk.cc@gmail.com> | 2020-10-18 22:28:19 -0400 |
commit | fbe31dc534d59b21065c168a915b24b7a6be3e63 (patch) | |
tree | 50c7902418fe36cdde7c2f7c6dbfd797f306609e /colors | |
parent | 6ddb90437d9d37a3184e209f635e23cd58711540 (diff) |
colors: update
Diffstat (limited to 'colors')
-rw-r--r-- | colors/doom-one.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/colors/doom-one.vim b/colors/doom-one.vim index c469ffc..d4ea93f 100644 --- a/colors/doom-one.vim +++ b/colors/doom-one.vim @@ -233,10 +233,11 @@ let s:text_colors = { \ 'Debug': s:yellow, \ 'Error': s:red, \ 'Special': s:magenta, +\ 'Muted': s:fg_alt, \} for key in keys(s:text_colors) - call s:_('Text' . key, s:text_colors[key], '', '') - call s:_('Bold' . key, s:text_colors[key], '', 'bold') + call s:_('Text' . key, s:text_colors[key], '', '') + call s:_('Text' . key . 'Bold', s:text_colors[key], '', 'bold') endfor " }}} |