Skip to content

Instantly share code, notes, and snippets.

@getnashty
Created February 1, 2013 23:33
Show Gist options
  • Save getnashty/4694922 to your computer and use it in GitHub Desktop.
Save getnashty/4694922 to your computer and use it in GitHub Desktop.
# .bashrc
echo processing ~/.bashrc
#required to get X11 working right (for ssh -X and gtk)
export DISPLAY=:0
# git will show dirty branches
GIT_PS1_SHOWDIRTYSTATE=true
# colors that "ls" uses.
alias ls='ls -G'
export CLICOLOR=1
export LSCOLORS=hxfxcxdxbxegedabagacad
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
##END FROM SWOOP##
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment