Browse Source

Update dotfile

master
Brett Langdon 8 years ago
parent
commit
77d9d8c09e
No known key found for this signature in database GPG Key ID: B664881177781B04
3 changed files with 9 additions and 5 deletions
  1. +0
    -3
      config/heroku/config.json
  2. +5
    -1
      zshrc.d/bootstrap.zsh
  3. +4
    -1
      zshrc.d/lib/aliases.sh

+ 0
- 3
config/heroku/config.json View File

@ -1,3 +0,0 @@
{
"skip_analytics": true
}

+ 5
- 1
zshrc.d/bootstrap.zsh View File

@ -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

+ 4
- 1
zshrc.d/lib/aliases.sh View File

@ -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"'

Loading…
Cancel
Save