startify.vim 526 B

123456789101112131415161718
  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: 1.3
  5. if exists("b:current_syntax")
  6. finish
  7. endif
  8. syntax match startifyDelimiter /\[\|\]/
  9. highlight link startifyDelimiter Delimiter
  10. syntax match startifyNumber /\v\[[eq[:digit:]]+\]/hs=s+1,he=e-1 contains=startifyDelimiter
  11. highlight link startifyNumber Number
  12. let b:current_syntax = 'startify'
  13. " vim: et sw=2 sts=2