Created
October 10, 2014 18:54
-
-
Save dj-wasabi/521e53c459b9520e9287 to your computer and use it in GitHub Desktop.
.bash_profile
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 | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Including git-prompt script | |
source ~/.git-prompt.sh | |
# User specific aliases and functions | |
PS1='\u@\h [ \w ] (\t - \d)\n$(__git_ps1) > ' | |
PS2=" " | |
# | |
export LC_ALL=en_US.utf8 | |
# Setting the umask | |
umask 022 | |
alias ssh='ssh -A' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment