1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 23:09:44 +00:00
prezto/modules/emacs/init.zsh

21 lines
444 B
Bash
Raw Normal View History

#
# Configures Emacs dependency management.
#
# Authors: Sebastian Wiesner <lunaryorn@gmail.com>
#
# Enable Carton
if [[ -d "$HOME/.carton" ]]; then
path=($HOME/.carton/bin $path)
alias cai='carton install'
alias cau='carton update'
alias caI='carton init'
alias cae='carton exec'
2013-05-17 15:19:42 +00:00
local completion="$HOME/.carton/etc/carton_completion.zsh"
if [[ -e "${completion}" ]]; then
source "${completion}"
fi
fi