mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 07:21:12 +00:00
18 lines
277 B
Bash
18 lines
277 B
Bash
#
|
|
# Provides Git aliases and functions.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
# Return if requirements are not found.
|
|
if (( ! $+commands[git] )); then
|
|
return 1
|
|
fi
|
|
|
|
# Load dependencies.
|
|
pmodload 'helper'
|
|
|
|
# Source module files.
|
|
source "${0:h}/alias.zsh"
|