You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
459 B
25 lines
459 B
# |
|
# Configures Emacs dependency management. |
|
# |
|
# Authors: Sebastian Wiesner <lunaryorn@gmail.com> |
|
# |
|
|
|
# Return if requirements are not found. |
|
if [[ ! -d "$HOME/.carton" ]]; then |
|
return 1 |
|
fi |
|
|
|
# Prepend Carton bin directory. |
|
path=($HOME/.carton/bin $path) |
|
|
|
# Load Carton completion |
|
source "$HOME/.carton/etc/carton_completion.zsh" 2> /dev/null |
|
|
|
# |
|
# Aliases |
|
# |
|
|
|
alias cai='carton install' |
|
alias cau='carton update' |
|
alias caI='carton init' |
|
alias cae='carton exec'
|
|
|