startify.vim 622 B

123456789101112131415161718192021
  1. " Plugin: https://github.com/mhinz/vim-startify
  2. " Description: Start screen displaying recently used stuff.
  3. " Maintainer: Marco Hinz <http://github.com/mhinz>
  4. " Version: 0.5
  5. if exists("b:current_syntax")
  6. finish
  7. endif
  8. syntax match startifyStartify /startify>/
  9. highlight link startifyStartify Function
  10. syntax match startifyDelimiter /\[\|\]/
  11. highlight link startifyDelimiter Delimiter
  12. syntax match startifyNumber /\v\[[eq[:digit:]]+\]/hs=s+1,he=e-1 contains=startifyDelimiter
  13. highlight link startifyNumber Number
  14. let b:current_syntax = 'startify'
  15. " vim: et sw=2 sts=2