
I guess most people are used to just write away via 'i' after entering Vim. So this change adheres to them. (Say "Thanks!" to @Osse) If you don't like this change consider creating an additional, hidden key for creating the empty buffer: let g:startify_empty_buffer_key = 'e'
19 lines
526 B
VimL
19 lines
526 B
VimL
" Plugin: https://github.com/mhinz/vim-startify
|
|
" Description: Start screen displaying recently used stuff.
|
|
" Maintainer: Marco Hinz <http://github.com/mhinz>
|
|
" Version: 1.3
|
|
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syntax match startifyDelimiter /\[\|\]/
|
|
highlight link startifyDelimiter Delimiter
|
|
|
|
syntax match startifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=startifyDelimiter
|
|
highlight link startifyNumber Number
|
|
|
|
let b:current_syntax = 'startify'
|
|
|
|
" vim: et sw=2 sts=2
|