From 2518886fbff483bba1944409dce12c9676fb6bc5 Mon Sep 17 00:00:00 2001 From: Matteo Pergolesi Date: Mon, 23 Dec 2019 00:21:07 +0100 Subject: [PATCH] Set colors for syntax defined by stephpy/vim-yaml. (#163) * Set colors for syntax defined by stephpy/vim-yaml. * Wrapping in fold --- after/syntax/yaml.vim | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/after/syntax/yaml.vim b/after/syntax/yaml.vim index fedc41f..af15e7a 100644 --- a/after/syntax/yaml.vim +++ b/after/syntax/yaml.vim @@ -10,3 +10,26 @@ hi! link yamlFlowIndicator Delimiter hi! link yamlNodeTag DraculaPink hi! link yamlPlainScalar DraculaYellow +" stephpy/yaml {{{ + +" yamlConstant +hi! link Keyword DraculaPurple +" yamlIndicator +hi! link PreCondit DraculaPink +" yamlAnchor, yamlAlias +hi! link Function DraculaPinkItalic +" yamlKey +hi! link Identifier DraculaCyan +" yamlType +hi! link Type DraculaPink + +" yamlComment +hi! link Comment DraculaComment +" yamlInline, yamlBlock +hi! link Operator Delimiter +" yamlString +hi! link String DraculaYellow +" yamlEscape +hi! link Special DraculaPink + +" }}}