diff --git a/config/heroku/config.json b/config/heroku/config.json deleted file mode 100644 index ee27dff..0000000 --- a/config/heroku/config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "skip_analytics": true -} diff --git a/zshrc.d/bootstrap.zsh b/zshrc.d/bootstrap.zsh index a8c7058..38c118a 100644 --- a/zshrc.d/bootstrap.zsh +++ b/zshrc.d/bootstrap.zsh @@ -10,6 +10,10 @@ source ${ZSH_DIR}/.env.zsh # Load in oh-my-zsh source ${ZSH}/oh-my-zsh.sh -# Load virtualenvwrapper if it is exists +# Load virtualenvwrapper if it exists # DEV: Load the lazy script for faster load times test -x /usr/local/bin/virtualenvwrapper_lazy.sh && source /usr/local/bin/virtualenvwrapper_lazy.sh + +# Load zsh-syntax-highlighting if it exists +# DEV: brew install zsh-syntax-highlighting +test -f /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh && source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh diff --git a/zshrc.d/lib/aliases.sh b/zshrc.d/lib/aliases.sh index f4e67e0..03ea491 100644 --- a/zshrc.d/lib/aliases.sh +++ b/zshrc.d/lib/aliases.sh @@ -1,4 +1,7 @@ alias up="vagrant up && vagrant ssh" alias stayawake="caffeinate -s -d -i" alias emacs="emacs -nw" -alias docker-login="aws ecr get-login --region us-east-1 | sh" +alias docker-login="aws ecr get-login --no-include-email --region us-east-1 | sh" +alias docker-start="open --background /Applications/Docker.app" +alias clear-dns="sudo dscacheutil -flushcache || sudo killall -HUP mDNSResponder" +alias docker-top='watch -n 1 "clear && docker top $1"'