Skip to content

Instantly share code, notes, and snippets.

@boovius
Created April 6, 2015 18:52
Show Gist options
  • Save boovius/9a3b4750e314890acd83 to your computer and use it in GitHub Desktop.
Save boovius/9a3b4750e314890acd83 to your computer and use it in GitHub Desktop.
custom aliases
# if using bash_it
# this file should go in ~/.bash_it/aliases/custom.aliases.bash
# tree
alias tree='tree -I vendor' # show tree without vendor
# sublime
alias subl='open -a "sublime text"'
# bundler
alias be='bundle exec'
alias ber='bundle exec rake'
# shotgun sinatra
alias shotgun='bundle exec shotgun config.ru'
# ngrok
alias ngrok=/Applications/ngrok
# tmux
alias tmux='TERM=xterm-256color tmux'
alias test_runner='ruby ~/.vim/bundle/vim_test_runner/test_runner'
# git aliases
alias gb='git branch'
alias gco='git checkout'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment