[nvim] don't use the 16th base16 color in the colorscheme

This commit is contained in:
Dmytro Meleshko 2020-08-01 19:52:11 +03:00
parent 20d80eeb75
commit e8ab498446

View file

@ -77,7 +77,8 @@
call s:hi('Function', 0xD, '', '', '') call s:hi('Function', 0xD, '', '', '')
call s:hi('Identifier', 0x8, '', 'none', '') call s:hi('Identifier', 0x8, '', 'none', '')
hi! link Variable Identifier hi! link Variable Identifier
call s:hi('Include', 0xF, '', '', '') " call s:hi('Include', 0xF, '', '', '')
hi! link Include Keyword
call s:hi('PreProc', 0xA, '', '', '') call s:hi('PreProc', 0xA, '', '', '')
call s:hi('Label', 0xA, '', '', '') call s:hi('Label', 0xA, '', '', '')
hi! link Operator NONE hi! link Operator NONE
@ -285,6 +286,7 @@
hi! link jsEnvComment Special hi! link jsEnvComment Special
hi! link jsImport Include hi! link jsImport Include
hi! link jsExport Include hi! link jsExport Include
hi! link jsTemplateBraces PreProc
" }}} " }}}
" JSON {{{ " JSON {{{
@ -328,6 +330,7 @@
hi! link typescriptEnumKeyword typescriptClassKeyword hi! link typescriptEnumKeyword typescriptClassKeyword
hi! link typescriptModule jsImport hi! link typescriptModule jsImport
hi! link typescriptAbstract Keyword hi! link typescriptAbstract Keyword
hi! link typescriptTemplateSB PreProc
" }}} " }}}
" Markdown {{{ " Markdown {{{
@ -353,15 +356,15 @@
" }}} " }}}
" Ruby {{{ " Ruby {{{
hi! link rubyPseudoVariable Variable hi! link rubyPseudoVariable Variable
hi! link rubyClassName Type hi! link rubyClassName Type
hi! link rubyAttribute rubyFunction hi! link rubyAttribute rubyFunction
hi! link rubyConstant Constant hi! link rubyConstant Constant
call s:hi('rubyInterpolationDelimiter', 0xF, '', '', '') hi! link rubyInterpolationDelimiter PreProc
hi! link rubySymbol String hi! link rubySymbol String
hi! link rubyStringDelimiter rubyString hi! link rubyStringDelimiter rubyString
hi! link rubyRegexp Special hi! link rubyRegexp Special
hi! link rubyRegexpDelimiter rubyRegexp hi! link rubyRegexpDelimiter rubyRegexp
" }}} " }}}
" Lua {{{ " Lua {{{