[bash] run local bashrc at the very end
This commit is contained in:
parent
121c737e2d
commit
83f8531ce1
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue