Skip to content

Instantly share code, notes, and snippets.

@firatkucuk
Created August 2, 2016 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save firatkucuk/f76dd357689bbc8842d9d3d5839fb289 to your computer and use it in GitHub Desktop.
Save firatkucuk/f76dd357689bbc8842d9d3d5839fb289 to your computer and use it in GitHub Desktop.
Yüksek lisans tezi vim script dosyası
if exists("b:current_syntax")
finish
endif
syntax region tezYapilacak start="\[YAPILACAK:" end="\]"
hi def link tezYapilacak Label
"highlight tezYapilacak ctermbg=magenta
syntax region tezBasvuru start="\[BAŞVURU:" end="\]"
hi def link tezBasvuru Statement
"highlight tezBasvuru ctermbg=red
syntax region tezResim start="\[RESİM:" end="\]"
hi def link tezResim Type
"highlight tezResim ctermbg=yellow
syntax region tezBaslik start="\[# " end="\]"
hi def link tezBaslik Error
"highlight tezBaslik ctermbg=green
syntax match tezKod /^\. .*$/
hi def link tezKod Include
"highlight tezKod ctermbg=darkgray ctermfg=green
let b:current_syntax = "tez"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment