aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-09-30 12:30:42 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-09-30 12:30:42 -0300
commit72341067a401623371f1b0e4dced7744ab50befd (patch)
treebac9bd32f011ce65523e1fbd31e1135dce42aaf2
parent9c1485aee47f3f811fde10a62decf1cc74d0b0a3 (diff)
downloadmetadot-72341067a401623371f1b0e4dced7744ab50befd.tar.gz
metadot-72341067a401623371f1b0e4dced7744ab50befd.tar.bz2
Unset GIT_PS1_SHOWDIRTYSTATE and GIT_PS1_SHOWSTASHSTATE for performance
-rw-r--r--modules/profile/profile.dot.link5
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"