From f08f2d0ccc9f3accc98ed000a3bd05cd9d190ed0 Mon Sep 17 00:00:00 2001 From: Michael Welford Date: Mon, 1 Mar 2021 21:18:03 +1030 Subject: [PATCH] Add in some initial treesitter values. --- autoload/airline/themes/falcon.vim | 2 +- colors/falcon.vim | 12 +++++++++++- estilo/syntax/treesitter.yml | 10 ++++++++++ 3 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 estilo/syntax/treesitter.yml diff --git a/autoload/airline/themes/falcon.vim b/autoload/airline/themes/falcon.vim index 7b0e416..fcaa44f 100644 --- a/autoload/airline/themes/falcon.vim +++ b/autoload/airline/themes/falcon.vim @@ -4,7 +4,7 @@ " URL:https://github.com/fenetikm/falcon " Author: Michael Welford " License: MIT -" Last Change: 2021/01/07 07:12 +" Last Change: 2021/03/01 21:17 " ============================================================ let g:airline#themes#falcon#palette = {} diff --git a/colors/falcon.vim b/colors/falcon.vim index 944b2a7..72b5919 100644 --- a/colors/falcon.vim +++ b/colors/falcon.vim @@ -4,7 +4,7 @@ " URL: https://github.com/fenetikm/falcon " Author: Michael Welford " License: MIT -" Last Change: 2021/01/07 07:12 +" Last Change: 2021/03/01 21:17 " =============================================================== set background=dark @@ -414,6 +414,16 @@ hi tmuxCmds guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NON hi tmuxOptsSet guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE hi tmuxOptions guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE hi tmuxOptsSetw guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE +hi link TSKeyword Keyword +hi link TSVariable Identifier +hi TSMethod guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE +hi link TSVariableBuiltin Type +hi link TSFunction Keyword +hi link TSOperator Operator +hi TSConstructor guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold +hi link TSException Keyword +hi link TSConstant Constant +hi link TSConstBuiltin Boolean hi link twigVarDelim Delimiter hi link twigTagDelim Delimiter hi twigString guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE diff --git a/estilo/syntax/treesitter.yml b/estilo/syntax/treesitter.yml new file mode 100644 index 0000000..8a24af8 --- /dev/null +++ b/estilo/syntax/treesitter.yml @@ -0,0 +1,10 @@ +TSKeyword: '@Keyword' +TSVariable: '@Identifier' +TSMethod: 'normal_gray' +TSVariableBuiltin: '@Type' +TSFunction: '@Keyword' +TSOperator: '@Operator' +TSConstructor: 'normal_gray - b' +TSException: '@Keyword' +TSConstant: '@Constant' +TSConstBuiltin: '@Boolean'