mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
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:
parent
f4944d5a95
commit
ae2db75f3e
20 changed files with 629 additions and 0 deletions
22
plugins/dot-env/os/Darwin/editor.sh
Normal file
22
plugins/dot-env/os/Darwin/editor.sh
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue