Created
April 6, 2015 18:52
-
-
Save boovius/9a3b4750e314890acd83 to your computer and use it in GitHub Desktop.
custom aliases
This file contains hidden or 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
# 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