X-Git-Url: https://git.sthu.org/?p=shutils.git;a=blobdiff_plain;f=dotfiles%2Fshell%2Fzshrc;h=9e9b7fa7d94742fa41fb39b47ecfca182cc8886e;hp=92d5b02b9a9aa7ae32135fa9c64eeeaaf460920c;hb=b0033e2f0e2faeb605c3831a242bad2673840692;hpb=f111c9362e6680ed06ea96c1874baca9621c9ded diff --git a/dotfiles/shell/zshrc b/dotfiles/shell/zshrc index 92d5b02..9e9b7fa 100644 --- a/dotfiles/shell/zshrc +++ b/dotfiles/shell/zshrc @@ -112,7 +112,13 @@ function precmd () if [[ 0 -ne "${exitstatus}" ]] ; then PR_STUFF="${PR_RED}RET ${exitstatus}${PR_NO_COLOUR}" fi - vcs_info + + # autofs always complains not being able to mount .hg/ and the like + if [ -r /etc/auto.master ] && grep -qe "^$PWD\s" /etc/auto.master; then + vcs_info_msg_0_="" + else + vcs_info + fi }