prezto/modules/git/init.zsh

21 lines
332 B
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Provides Git aliases and functions.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2012-07-23 19:00:44 +00:00
# Return if requirements are not found.
if (( ! $+commands[git] )); then
return 1
fi
2012-09-29 17:07:31 +00:00
# Load dependencies.
pmodload 'helper'
# Load 'run-help' function.
autoload -Uz run-help-git
2012-03-28 16:41:39 +00:00
# Source module files.
source "${0:h}/alias.zsh"