diff options
author | 2017-01-29 17:34:36 +0100 | |
---|---|---|
committer | 2017-01-29 17:34:36 +0100 | |
commit | 66d057442b325a902a93f50657358241a6ef9ebb (patch) | |
tree | c4af3cc47821f3f8244501c984a7bf14471cdc8e | |
parent | 96fd18a326b1dd3d0094f3ffe13c65c31a83bbb4 (diff) | |
download | nord-vim-66d057442b325a902a93f50657358241a6ef9ebb.tar.gz |
GHI-#17 Implement language groups for AWK
-rwxr-xr-x | colors/nord.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index 67f0a3f..4497a38 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -170,6 +170,23 @@ hi! link PreCondit PreProc "+-----------+ "+ Languages + "+-----------+ +call s:hi("awkCharClass", s:nord7_gui, "", s:nord7_term, "", "", "") +call s:hi("awkPatterns", s:nord9_gui, "", s:nord9_term, "", "bold", "") +hi! link awkArrayElement Identifier +hi! link awkBoolLogic Keyword +hi! link awkBrktRegExp SpecialChar +hi! link awkComma Delimiter +hi! link awkExpression Keyword +hi! link awkFieldVars Identifier +hi! link awkLineSkip Keyword +hi! link awkOperator Operator +hi! link awkRegExp SpecialChar +hi! link awkSearch Keyword +hi! link awkSemicolon Delimiter +hi! link awkSpecialCharacter SpecialChar +hi! link awkSpecialPrintf SpecialChar +hi! link awkVariables Identifier + call s:hi("cIncluded", s:nord7_gui, "", s:nord7_term, "", "", "") hi! link cOperator Operator hi! link cPreCondit PreCondit |