Skip to content

Commit

Permalink
Merge pull request #5 from yasukotelin/support-typescript
Browse files Browse the repository at this point in the history
Add to support typescript and jsx syntax
  • Loading branch information
yasukotelin committed Dec 27, 2019
2 parents 10508b1 + bca2840 commit 84e5b01
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions colors/shirotelin.vim
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ endif
set t_Co=256
let g:colors_name = "shirotelin"


""""""""""""""""""""""
" group-name
""""""""""""""""""""""
Expand Down Expand Up @@ -72,6 +71,8 @@ hi Error term=bold cterm=bold ctermfg=196 ctermbg=231 gui=bold guifg=#FF0000 gui

hi Todo term=bold cterm=bold ctermfg=22 ctermbg=151 gui=bold guifg=#005F00 guibg=#afd7af

hi ClassName term=bold cterm=bold ctermfg=23 gui=bold guifg=#005f5f

""""""""""""""""""""""
" highlight-groups
""""""""""""""""""""""
Expand Down Expand Up @@ -200,11 +201,34 @@ hi FlutterClosingLabel term=NONE cterm=NONE ctermfg=146 gui=NONE guifg=#AFAFD7
" dart-vim-plugin
""""""""""""""""""""""

hi dartTypeName term=bold cterm=bold ctermfg=23 gui=bold guifg=#005f5f
hi link dartTypeName ClassName

""""""""""""""""""""""
" vim-go
""""""""""""""""""""""

hi goTypeName term=bold cterm=bold ctermfg=23 gui=bold guifg=#005f5f
hi goReceiverType term=bold cterm=bold ctermfg=23 gui=bold guifg=#005f5f
hi link goTypeName ClassName
hi link goReceiverType ClassName

""""""""""""""""""""""
" TypeScript
""""""""""""""""""""""

hi link typescriptImport Include
hi link typescriptCastKeyword Keyword
hi link typescriptClassName ClassName
hi link typescriptTypeReference ClassName
hi link typescriptExport Keyword
hi link typescriptIdentifier Identifier

""""""""""""""""""""""
" JSX
""""""""""""""""""""""

hi link jsxComponentName Statement
hi link jsxTagName Statement
hi link jsxAttrib htmlArg
hi link jsxOpenPunct Function
hi link jsxClosePunct Function
hi link jsxCloseString Function
hi link jsxBraces Function

0 comments on commit 84e5b01

Please sign in to comment.