1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated vimrc

This commit is contained in:
amix
2015-07-13 11:22:46 +01:00
parent 9a2843c2a5
commit d7752b59ae
301 changed files with 4699 additions and 7969 deletions

View File

@ -3,6 +3,19 @@ if exists("b:done_vimsnippets")
endif
let b:done_vimsnippets = 1
" Some variables need default value
if !exists("g:snips_author")
let g:snips_author = "yourname"
endif
if !exists("g:snips_email")
let g:snips_email = "yourname@email.com"
endif
if !exists("g:snips_github")
let g:snips_github = "https://github.com/yourname"
endif
" Expanding the path is not needed on Vim 7.4
if &cp || version >= 704
finish