Sha256: 1311254fb019ae92b4b22cf3137f2ef45d1ed4addc09858d84bbb8378e94623a
Contents?: true
Size: 1.15 KB
Versions: 4
Compression:
Stored size: 1.15 KB
Contents
export EDITOR="vim" export VISUAL="vim" # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi export JRE_HOME=/Library/Java/Home export PATH=~/bin:/usr/local/sbin:/usr/local/bin:/Developer/usr/bin/:$PATH # don't put duplicate lines in the history. See bash(1) for more options export HISTCONTROL=ignoredups # ... and ignore same sucessive entries. export HISTCONTROL=ignoreboth # Alias definitions. # You may want to put all your additions into a separate file like # ~/.bash_aliases, instead of adding them here directly. # See /usr/share/doc/bash-doc/examples in the bash-doc package. if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc). if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi # Include git goodies if [ -f ~/.git_bash_prompt ]; then . ~/.git_bash_prompt fi if [ -f ~/.git_completion ]; then . ~/.git_completion fi [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home/
Version data entries
4 entries across 4 versions & 1 rubygems