Skip to content

Instantly share code, notes, and snippets.

@zachharkey
Created June 17, 2013 16:47
Show Gist options
  • Save zachharkey/5798326 to your computer and use it in GitHub Desktop.
Save zachharkey/5798326 to your computer and use it in GitHub Desktop.
WebEnabled Default dotfiles
# ~/.bash_logout
clear
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
BASH_ENV=$HOME/.bashrc
USERNAME=""
export USERNAME BASH_ENV PATH
# .bashrc
# User specific aliases and functions
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
export TERM=linux
# Custom shell aliases
export me=${USER#w_}
alias ls='ls --color=auto'
# Added so you can install custom gems in its shell environment:
GEM_HOME="$HOME/lib/ruby/gems"
RUBYOPT=rubygems
PATH="$PATH:$HOME/bin:$GEM_HOME/bin"
export GEM_HOME RUBYOPT PATH
# DRUSH auto-complete shell-script to load
[ -f ~/bin/drush/drush.complete.sh ] && . ~/bin/drush/drush.complete.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment