forked from bjeanes/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbashrc
More file actions
executable file
·49 lines (39 loc) · 1.4 KB
/
bashrc
File metadata and controls
executable file
·49 lines (39 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# export PATH="/usr/local/bin:$PATH"
# export PATH=/usr/local/bin:/usr/local/sbin:$PATH
# export IRBRC="$HOME/.irbrc"
# export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32'
# export CLICOLOR=1
# export VISUAL=$EDITOR
# # sets title of window to be user@host
# alias ls='ls -G'
# alias ..='cd ..;' # can then do .. .. .. to move up multiple directories.
# alias ...='.. ..'
# # rails stuff
# alias log='tail -f -0 ./log/*.log &'
# alias r='bundle exec rake'
# alias migrate='r db:migrate'
# alias rollback='r db:rollback'
# alias redo="r db:migrate && r db:rollback"
# alias restart='touch tmp/restart.txt'
# alias raisl='rails'
# alias b='bundle'
# alias s='ta && rails s'
# alias c='ta && rails s'
# alias ber="bundle exec rspec"
# alias be="bundle exec"
# alias berrim='r railties:install:migrations; r db:migrate'
# # elixir stuff
# alias mdg='mix deps.get'
# # readline settings
# bind "set completion-ignore-case on"
# bind "set show-all-if-ambiguous On" # this allows you to automatically show completion without double tab-ing
# # Turn on advanced bash completion if the file exists (get it here: http://www.caliban.org/bash/index.shtml#completion)
# if [ -f /etc/bash_completion ]; then
# . /etc/bash_completion
# fi
# export HISTSIZE=10000
# shopt -s histappend
# alias h='history|g'
# ### Added by the Heroku Toolbelt
# export PATH="/usr/local/heroku/bin:$PATH"
# [ -f ~/.fzf.bash ] && source ~/.fzf.bash