Created
June 17, 2013 16:47
-
-
Save zachharkey/5798326 to your computer and use it in GitHub Desktop.
WebEnabled Default dotfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.bash_logout | |
clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .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