diff options
author | Ekaitz Zárraga <ekaitz.zarraga@fon.com> | 2016-02-16 10:01:22 +0100 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@fon.com> | 2016-02-16 10:01:22 +0100 |
commit | a367ec0df92be4565c8c79ba6be7c0c85460b934 (patch) | |
tree | cf1c62f808a93c3124ec5763ef820eb22c3f208b | |
parent | a6a061a470dfc66b6307d3d7f25b2f4233c89504 (diff) |
load aliases in profile...
-rw-r--r-- | bash/.bash_profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/.bash_profile b/bash/.bash_profile index f979822..6196590 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -3,6 +3,6 @@ source ~/.git-prompt.sh #PS1="\[$GREEN\]\t\[$RED\]-\[$BLUE\]\u\[$YELLOW\]\[$YELLOW\]\w\[\033[m\]\[$MAGENTA\]\$(__git_ps1)\[$WHITE\]\$ " PS1="\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$(__git_ps1)\[$WHITE\]\$ " -if [ -f .bash_aliases ] ; then - . .bash_aliases +if [ -f ~/.bash_aliases ] ; then + . ~/.bash_aliases fi |