diff --git a/bash/.bash_profile b/bash/.bash_profile index 151d743..bf0f16f 100755 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -1,4 +1,6 @@ -source ~/.bashrc +if [ -f ~/.bashrc ]; then + source ~/.bashrc +fi export PS1="\[\033[1;31m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " @@ -6,6 +8,7 @@ export CLICOLOR=1 export LSCOLORS=ExFxBxDxCxegedabagacad export PATH="$PATH":$HOME/.local/bin +export CPATH="$CPATH":$HOME/.local/lib alias ls='ls -AFh --color' alias vim=nvim