1
0
mirror of https://shylinux.com/x/ContextOS synced 2025-04-27 09:38:28 +08:00
ContextOS/etc/conf/shy.vim
2020-07-28 19:46:11 +08:00

28 lines
704 B
VimL

set foldmethod=indent
syn match Comment "#.*$"
syn match Comment "\"[^\"]*\""
highlight shyString ctermfg=magenta
syn match shyString "\`[^\`]*\`"
syn region shyString start="`" end="`"
highlight shyContext ctermfg=red
syntax match shyContext "\~[a-z\.]\+"
highlight shyCommand ctermfg=green
syntax match shyCommand "^ [a-zA-Z0-9:._]\+"
syntax match shyCommand "^[a-zA-Z0-9:._]\+"
highlight shyConfig ctermfg=yellow
syntax match shyConfig "^ config"
syntax match shyConfig "^source"
syntax match shyConfig "^return"
highlight shyTitle ctermbg=darkred ctermfg=white
syntax match shyTitle "^title"
syntax match shyTitle "^chapter"
syntax match shyTitle "^section"