prezto_config/modules/git/init.zsh

18 lines
277 B
Bash
Raw 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'
2012-03-28 18:41:39 +02:00
# Source module files.
source "${0:h}/alias.zsh"