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

@ -4,59 +4,59 @@ snippet #!
snippet if
if ${1:condition}; then
${2:# statements}
${0:# statements}
fi
snippet ife
if ${1:condition}; then
${2:# statements}
else
${3:# statements}
${0:# statements}
fi
snippet eif
elif ${1:condition} ; then
${2:# statements}
${0:# statements}
snippet for
for (( ${2:i} = 0; $2 < ${1:count}; $2++ )); do
${3:# statements}
${0:# statements}
done
snippet fori
for ${1:needle} in ${2:haystack} ; do
${3:#statements}
${0:#statements}
done
snippet fore
for ${1:item} in ${2:list}; do
${3:# statements}
${0:# statements}
done
snippet wh
while ${1:condition}; do
${2:# statements}
${0:# statements}
done
snippet until
until ${1:condition}; do
${2:# statements}
${0:# statements}
done
snippet repeat
repeat ${1:integer}; do
${2:# statements}
${0:# statements}
done
snippet case
case ${1:word} in
${2:pattern})
${3};;
${0};;
esac
snippet select
select ${1:answer} in ${2:choices}; do
${3:# statements}
${0:# statements}
done
snippet (
( ${1:#statements} )
( ${0:#statements} )
snippet {
{ ${1:#statements} }
{ ${0:#statements} }
snippet [
[[ ${1:test} ]]
[[ ${0:test} ]]
snippet always
{ ${1:try} } always { ${2:always} }
{ ${1:try} } always { ${0:always} }
snippet fun
function ${1:name} (${2:args}) {
${3:# body}
${0:# body}
}