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,38 +4,38 @@ snippet #!
snippet if
if [[ ${1:condition} ]]; then
${2:#statements}
${0:#statements}
fi
snippet elif
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 wh
while [[ ${1:condition} ]]; do
${2:#statements}
${0:#statements}
done
snippet until
until [[ ${1:condition} ]]; do
${2:#statements}
${0:#statements}
done
snippet case
case ${1:word} in
${2:pattern})
${3};;
${0};;
esac
snippet go
while getopts '${1:o}' ${2:opts}
do
case $$2 in
${3:o0})
${4:#staments};;
${0:#staments};;
esac
done
# Set SCRIPT_DIR variable to directory script is located.
@ -82,3 +82,11 @@ snippet getopt
shift $(($OPTIND-1))
snippet root
if [ $(id -u) -ne 0 ]; then exec sudo $0; fi
snippet fun
${1:function_name}() {
${0:#function_body}
}
snippet ffun
function ${1:function_name}() {
${0:#function_body}
}