From e9c0ff6b948c344d1b4701e129c5155bf8db1629 Mon Sep 17 00:00:00 2001 From: Fausto Núñez Alberro Date: Tue, 26 Jan 2021 22:35:49 +0100 Subject: Support nvim-treesitter highlight groups --- colors/base16-papercolor-light.vim | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'colors/base16-papercolor-light.vim') diff --git a/colors/base16-papercolor-light.vim b/colors/base16-papercolor-light.vim index c262fca..a86ebe6 100644 --- a/colors/base16-papercolor-light.vim +++ b/colors/base16-papercolor-light.vim @@ -417,6 +417,14 @@ call hi("StartifySelect", s:gui0C, "", s:cterm0C, "", "", "") call hi("StartifySlash", s:gui03, "", s:cterm03, "", "", "") call hi("StartifySpecial", s:gui03, "", s:cterm03, "", "", "") +" Neovim Treesitter highlighting +call hi("TSFunction", s:gui0D, "", s:cterm0D, "", "", "") +call hi("TSKeywordFunction", s:gui0E, "", s:cterm0E, "", "", "") +call hi("TSMethod", s:gui0D, "", s:cterm0D, "", "", "") +call hi("TSProperty", s:gui0A, "", s:cterm0A, "", "", "") +call hi("TSPunctBracket", s:gui0C, "", s:cterm0C, "", "", "") +call hi("TSType", s:gui08, "", s:cterm08, "", "none", "") + " Java highlighting call hi("javaOperator", s:gui0D, "", s:cterm0D, "", "", "") -- cgit v1.2.3 pp/app.js?h=develop'>logtreecommitdiff
blob: b0d3738864f30c8b4f7908bb6732952649cf5bea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63