mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 12:33:51 -05:00
14 lines
498 B
VimL
14 lines
498 B
VimL
if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'latex') != -1
|
|
finish
|
|
endif
|
|
|
|
syntax match helpText /^.*: .*/
|
|
syntax match secNum /^\S\+\(\.\S\+\)\?\s*/ contained conceal
|
|
syntax match secLine /^\S\+\t.\+/ contains=secNum
|
|
syntax match mainSecLine /^[^\.]\+\t.*/ contains=secNum
|
|
syntax match ssubSecLine /^[^\.]\+\.[^\.]\+\.[^\.]\+\t.*/ contains=secNum
|
|
highlight link helpText PreProc
|
|
highlight link secNum Number
|
|
highlight link mainSecLine Title
|
|
highlight link ssubSecLine Comment
|