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

Updated all the plugins. Removed powerline. Added vim-airline (replacement for powerline). Added vim-fugitive.

This commit is contained in:
amix
2013-11-16 19:45:48 +00:00
parent 351979d3e0
commit 86f4456be1
239 changed files with 14942 additions and 8068 deletions

View File

@ -2,50 +2,50 @@ snippet header
" File: ${1:`expand('%:t')`}
" Author: ${2:`g:snips_author`}
" Description: ${3}
${4:" Last Modified: `strftime("%B %d, %Y")`}
${0:" Last Modified: `strftime("%B %d, %Y")`}
snippet guard
if exists('${1:did_`vim_snippets#Filename()`}') || &cp${2: || version < 700}
finish
endif
let $1 = 1${3}
let $1 = 1${0}
snippet f
fun! ${1:`expand('%') =~ 'autoload' ? substitute(matchstr(expand('%:p'),'autoload/\zs.*\ze.vim'),'[/\\]','#','g').'#' : ''`}${2:function_name}(${3})
${4}
${0}
endf
snippet t
try
${1}
catch ${2}
${3}
${0}
endtry
snippet for
for ${1} in ${2}
${3}
${0}
endfor
snippet forkv
for [${1},${2}] in items(${3})
${4}
${0}
unlet $1 $2
endfor
snippet wh
while ${1}
${2}
${0}
endw
snippet if
if ${1}
${2}
${0}
endif
snippet ife
if ${1}
${2}
else
${3}
${0}
endif
snippet au
augroup ${1:AU_NAME}
" this one is which you're most likely to use?
autocmd ${2:BufRead,BufNewFile} ${3:*.ext,*.ext3|<buffer[=N]>} ${4}
autocmd ${2:BufRead,BufNewFile} ${3:*.ext,*.ext3|<buffer[=N]>} ${0}
augroup end
snippet bun
Bundle '${1}'
Bundle '${0}'