Skip to content

Instantly share code, notes, and snippets.

@webpigeon
Created June 4, 2012 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webpigeon/2868853 to your computer and use it in GitHub Desktop.
Save webpigeon/2868853 to your computer and use it in GitHub Desktop.
BashRC for desktop
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
#PS1="[\u@\h \W$(__git_ps1 \" \(%s\)\")]\$ "
PS1="[\u@\h \W]$ "
# Java Options
export MAVEN_OPTS=-Djava.library.path=target/natives
# Bash Options that make things shiny
source /usr/share/git/completion/git-completion.bash
# Convienance Commands
export EDITOR=vim
export VISUAL="vim -R"
alias view=$VISUAL
alias edit=$EDITOR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment