mirror of
				https://github.com/amix/vimrc
				synced 2025-10-31 14:43:35 +08:00 
			
		
		
		
	Updated all the plugins. Removed powerline. Added vim-airline (replacement for powerline). Added vim-fugitive.
This commit is contained in:
		| @ -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} | ||||
| 	} | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 amix
					amix