Created
December 21, 2019 17:05
-
-
Save bronze/89d7a16cf03d6624d6e89cf8dbfdf967 to your computer and use it in GitHub Desktop.
aliases.zsh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------------------------------- | |
# edit zsh configs | |
# ------------------------------------------------------------------- | |
alias aliases="code ~/.zsh/aliases.zsh" | |
alias config="code ~/.zsh/aliases.zsh" | |
alias zshconfig="code ~/.zshrc && reload" | |
alias reload=". ~/.zshrc && echo 'ZSH config reloaded from ~/.zshrc'" | |
#alias httpd="code /usr/local/etc/httpd/httpd.conf" | |
#alias vhosts="code /usr/local/etc/httpd/extra/httpd-vhosts.conf" | |
#alias vhosts="subl /Users/bronze/Sites/httpd-vhosts.conf" | |
alias gogogadget="/Users/bronze/Sites/terminal_updates.zsh" | |
# ------------------------------------------------------------------- | |
# directory movement | |
# ------------------------------------------------------------------- | |
alias dev="cd ~/Sites/" | |
alias desktop="cd ~/Desktop" | |
# ------------------------------------------------------------------- | |
# directory movement | |
# ------------------------------------------------------------------- | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias ....='cd ../../..' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment