blob: 8cfd926b82a4e7597a912d4469d75f786a04a7db (
plain)
1
2
3
4
5
6
7
8
9
10
|
chpwd () {
pstags=''
[ -f .todo ] && pstags+='todo '
[ -f .fehindex.jpg ] && pstags+='feh '
[ -d .hg ] && pstags+='hg '
[ -d .git ] && pstags+='git '
[ -d .svn ] && pstags+='svn '
[ -f Makefile -o -f makefile ] && pstags+='make '
source $ZDIR/prompt
}
|