[bash] run local bashrc at the very end

This commit is contained in:
Fernando Schauenburg 2016-02-05 23:00:24 +01:00
parent 121c737e2d
commit 83f8531ce1

View file

@ -44,9 +44,6 @@ do
shopt -s "$option" 2> /dev/null shopt -s "$option" 2> /dev/null
done done
# ~/.bashrc.local can be used for local settings (not in repository)
[ -f ~/.bashrc.local ] && . ~/.bashrc.local
# Add git command completion and prompt # Add git command completion and prompt
export GIT_PS1_SHOWDIRTYSTATE=1 # show unstaged (*) and staged (+) export GIT_PS1_SHOWDIRTYSTATE=1 # show unstaged (*) and staged (+)
export GIT_PS1_SHOWSTASHSTATE=1 # show $ if something is stashed export GIT_PS1_SHOWSTASHSTATE=1 # show $ if something is stashed
@ -175,3 +172,6 @@ solarized() {
# Solarize the shell only if running interactively (makes FTP clients happy) # Solarize the shell only if running interactively (makes FTP clients happy)
[[ "$-" == *i* ]] && do_solarize_shell [[ "$-" == *i* ]] && do_solarize_shell
# ~/.bashrc.local can be used for local settings (not in repository)
[ -f ~/.bashrc.local ] && . ~/.bashrc.local