diff options
author | BonaBeavis <gordian.dziwis@gmail.com> | 2021-12-08 17:44:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-08 17:44:43 +0100 |
commit | a4c51d58ea106f21686ee749d5ca05d3da7abdae (patch) | |
tree | 473d4d93a66da049fe324a2c39937c1f485f9196 /colors/base16-unikitty-dark.vim | |
parent | ebfd6a6ffc690fd9cc0d86b883ebe282a0d767ad (diff) | |
parent | eddf33db33ef76d0ebbd7a5ec824762b9f69db13 (diff) |
Merge pull request #42 from fnune/41-zenburn-treesitter-highlight-are-missing
Align syntax highlights to base16 stylingguideline
Diffstat (limited to 'colors/base16-unikitty-dark.vim')
-rw-r--r-- | colors/base16-unikitty-dark.vim | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/colors/base16-unikitty-dark.vim b/colors/base16-unikitty-dark.vim index 87c6029..4b1215b 100644 --- a/colors/base16-unikitty-dark.vim +++ b/colors/base16-unikitty-dark.vim @@ -247,7 +247,7 @@ call <sid>hi("Comment", s:gui03, "", s:cterm03, "", "", "") call <sid>hi("Conditional", s:gui0E, "", s:cterm0E, "", "", "") call <sid>hi("Constant", s:gui09, "", s:cterm09, "", "", "") call <sid>hi("Define", s:gui0E, "", s:cterm0E, "", "none", "") -call <sid>hi("Delimiter", s:gui0F, "", s:cterm0F, "", "", "") +call <sid>hi("Delimiter", s:gui05, "", s:cterm05, "", "", "") call <sid>hi("Float", s:gui09, "", s:cterm09, "", "", "") call <sid>hi("Function", s:gui0D, "", s:cterm0D, "", "", "") call <sid>hi("Identifier", s:gui08, "", s:cterm08, "", "none", "") @@ -255,11 +255,11 @@ call <sid>hi("Include", s:gui0D, "", s:cterm0D, "", "", "") call <sid>hi("Keyword", s:gui0E, "", s:cterm0E, "", "", "") call <sid>hi("Label", s:gui0A, "", s:cterm0A, "", "", "") call <sid>hi("Number", s:gui09, "", s:cterm09, "", "", "") -call <sid>hi("Operator", s:gui0F, "", s:cterm0F, "", "none", "") +call <sid>hi("Operator", s:gui05, "", s:cterm05, "", "none", "") call <sid>hi("PreProc", s:gui0A, "", s:cterm0A, "", "", "") call <sid>hi("Repeat", s:gui0A, "", s:cterm0A, "", "", "") call <sid>hi("Special", s:gui0C, "", s:cterm0C, "", "", "") -call <sid>hi("SpecialChar", s:gui0F, "", s:cterm0F, "", "", "") +call <sid>hi("SpecialChar", s:gui0C, "", s:cterm0C, "", "", "") call <sid>hi("Statement", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("StorageClass", s:gui0A, "", s:cterm0A, "", "", "") call <sid>hi("String", s:gui0B, "", s:cterm0B, "", "", "") @@ -523,6 +523,9 @@ call <sid>hi("StartifySelect", s:gui0C, "", s:cterm0C, "", "", "") call <sid>hi("StartifySlash", s:gui03, "", s:cterm03, "", "", "") call <sid>hi("StartifySpecial", s:gui03, "", s:cterm03, "", "", "") +" Treesitter highlighting +hi! link TSVariable Identifier + " Treesitter-refactor highlighting if has("nvim") call <sid>hi("TSDefinition", "", s:gui03, "", s:cterm03, "", "") |