diff options
author | Fausto Núñez Alberro <fausto.nunez@mailbox.org> | 2021-01-26 23:19:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 23:19:57 +0100 |
commit | c4f46d27ab22df113fe526468662f8cda94219b4 (patch) | |
tree | 6d8040572a3b8dbd51486988cd5a268ebf4acc87 /colors/base16-bespin.vim | |
parent | 16c4757457e469771a9c0eb5718f785057ed23da (diff) | |
parent | e9c0ff6b948c344d1b4701e129c5155bf8db1629 (diff) |
Merge pull request #10 from fnune/tree-sitter-highlights
Support nvim-treesitter highlight groups
Diffstat (limited to 'colors/base16-bespin.vim')
-rw-r--r-- | colors/base16-bespin.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/colors/base16-bespin.vim b/colors/base16-bespin.vim index 6a1707c..6634543 100644 --- a/colors/base16-bespin.vim +++ b/colors/base16-bespin.vim @@ -417,6 +417,14 @@ call <sid>hi("StartifySelect", s:gui0C, "", s:cterm0C, "", "", "") call <sid>hi("StartifySlash", s:gui03, "", s:cterm03, "", "", "") call <sid>hi("StartifySpecial", s:gui03, "", s:cterm03, "", "", "") +" Neovim Treesitter highlighting +call <sid>hi("TSFunction", s:gui0D, "", s:cterm0D, "", "", "") +call <sid>hi("TSKeywordFunction", s:gui0E, "", s:cterm0E, "", "", "") +call <sid>hi("TSMethod", s:gui0D, "", s:cterm0D, "", "", "") +call <sid>hi("TSProperty", s:gui0A, "", s:cterm0A, "", "", "") +call <sid>hi("TSPunctBracket", s:gui0C, "", s:cterm0C, "", "", "") +call <sid>hi("TSType", s:gui08, "", s:cterm08, "", "none", "") + " Java highlighting call <sid>hi("javaOperator", s:gui0D, "", s:cterm0D, "", "", "") |