diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-09-30 12:30:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-09-30 12:30:42 -0300 |
commit | 72341067a401623371f1b0e4dced7744ab50befd (patch) | |
tree | bac9bd32f011ce65523e1fbd31e1135dce42aaf2 /modules/profile | |
parent | 9c1485aee47f3f811fde10a62decf1cc74d0b0a3 (diff) | |
download | dotfiles-72341067a401623371f1b0e4dced7744ab50befd.tar.gz dotfiles-72341067a401623371f1b0e4dced7744ab50befd.tar.bz2 |
Unset GIT_PS1_SHOWDIRTYSTATE and GIT_PS1_SHOWSTASHSTATE for performance
Diffstat (limited to 'modules/profile')
-rw-r--r-- | modules/profile/profile.dot.link | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/profile/profile.dot.link b/modules/profile/profile.dot.link index d9a0570..5ef25df 100644 --- a/modules/profile/profile.dot.link +++ b/modules/profile/profile.dot.link @@ -26,8 +26,9 @@ export CDPATH=".:~:~/code:~/data:~/file:/var/www/data" export EDITOR="vim -X" # Basic git configuration -export GIT_PS1_SHOWDIRTYSTATE="1" -export GIT_PS1_SHOWSTASHSTATE="1" +# See http://stackoverflow.com/questions/4192014/git-ps1-extremely-slow-in-kernel-tree +export GIT_PS1_SHOWDIRTYSTATE="" +export GIT_PS1_SHOWUNTRACKEDFILES="" # Temporary folder export TMPDIR="$HOME/temp/misc" |