1
0
mirror of https://github.com/amix/vimrc synced 2025-07-18 17:44:59 +08:00
This commit is contained in:
huangqundl
2017-03-17 23:12:53 +08:00
parent 47b213d974
commit cba39b7326
855 changed files with 59981 additions and 35298 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