Added dot-env plugin

Dot-env is a cross-platform, cascading Zsh environment system for those who work on different hardware and OS environments.

See: https://github.com/midwire/.env
This commit is contained in:
Chris Blackburn 2012-01-21 19:12:38 -06:00
commit ae2db75f3e
20 changed files with 629 additions and 0 deletions

View file

@ -0,0 +1,22 @@
# Textmate Editing and Sourcing aliases
# export EDITOR="$HOME/bin/mate"
# Textmate 2 Editor
# export EDITOR="$HOME/bin/mate2"
# Sublime Text 2 Editor
export EDITOR="$HOME/bin/subl"
alias e="$EDITOR ."
alias ea="$EDITOR $DOT_ENV_PATH/host/$HOSTNAME/alias.sh"
alias eas=". $DOT_ENV_PATH/host/$HOSTNAME/alias.sh"
alias eb="$EDITOR $HOME/bin"
alias ee="$EDITOR $DOT_ENV_PATH $HOME/.bashrc"
alias ees=". $DOT_ENV_PATH/source.sh"
alias ef="$EDITOR $DOT_ENV_PATH/host/$HOSTNAME/functions.sh"
alias efs=". $DOT_ENV_PATH/host/$HOSTNAME/functions.sh"
alias eh="$EDITOR $HOME/.ssh"
alias ep="$EDITOR $DOT_ENV_PATH/host/$HOSTNAME/path.sh"
alias eps=". $DOT_ENV_PATH/host/$HOSTNAME/path.sh"
alias m="$EDITOR"
alias vi="$EDITOR"