From: Silvio Rhatto Date: Mon, 30 Sep 2013 15:30:42 +0000 (-0300) Subject: Unset GIT_PS1_SHOWDIRTYSTATE and GIT_PS1_SHOWSTASHSTATE for performance X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=72341067a401623371f1b0e4dced7744ab50befd;p=metadot.git Unset GIT_PS1_SHOWDIRTYSTATE and GIT_PS1_SHOWSTASHSTATE for performance --- 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"