dotfiles/bashrc

33 lines
766 B
Bash
Raw Normal View History

system_name=`uname -s` # Sets 'Darwin' or 'Linux' etc
2009-03-20 00:08:06 +11:00
source ~/.exports
source ~/.gitrc
source ~/.aliases
source ~/.save-directory
if [ $system_name == 'Darwin' ]; then
source ~/.gemdoc
source ~/.terminal
else
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
2009-06-10 13:02:44 +10:00
export PS1=' [`pwd`$(__git_ps1 " \[${COLOR_RED}\](%s)\[${COLOR_NC}\]")]\n$ '
function __pair_status {
hitchstatus " %s";
}
# readline settings
bind "set completion-ignore-case on"
bind "set bell-style none" # No bell, because it's damn annoying
bind "set show-all-if-ambiguous On" # this allows you to automatically show completion without double tab-ing
2009-03-20 00:08:06 +11:00
shopt -s checkwinsize
shopt -s histappend
2009-06-10 13:02:44 +10:00
shopt -s globstar
complete -C ~/.rake-completion.rb -o default rake}