diff options
author | Arctic Ice Studio <development@arcticicestudio.com> | 2019-04-13 14:47:04 +0200 |
---|---|---|
committer | Arctic Ice Studio <development@arcticicestudio.com> | 2019-04-13 14:47:04 +0200 |
commit | 65863b23ffad39f90fc4709c1f2d85421a451f9c (patch) | |
tree | cfe81c45b12c1a3d3b93b249fef0445d5f3246a8 | |
parent | a649fff5735f56bd5d38f4b4ed295c1c57626197 (diff) | |
download | nord-vim-65863b23ffad39f90fc4709c1f2d85421a451f9c.tar.gz |
Improve CMake generator expression highlighting
CMake generator expressions (1) are now highlighted using `nord10` as
foreground instead of `nord13` as background and `nord0` as foreground.
References:
(1) https://cmake.org/cmake/help/latest/manual/cmake-generator-expressions.7.html
GH-137
-rwxr-xr-x | colors/nord.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index 328245f..1bbfaf8 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -309,6 +309,8 @@ call s:hi("cIncluded", s:nord7_gui, "", s:nord7_term, "", "", "") hi! link cOperator Operator hi! link cPreCondit PreCondit +call s:hi("cmakeGeneratorExpression", s:nord10_gui, "", s:nord10_term, "", "", "") + hi! link csPreCondit PreCondit hi! link csType Type hi! link csXmlTag SpecialComment |