prezto/modules/git/init.zsh

21 lines
332 B
Bash
Raw Permalink Normal View History

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