]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
find has real-time progress
[dotfiles.git] / zsh / .zshrc
index e0f01fde6ae4f94d57bd4668a1ddd1fc8d8b403b..af58d105b99d74a41ce68ff670c8e24d14178851 100644 (file)
@@ -83,8 +83,7 @@ alias -g W="| wc -l | sed 's/ //g'"
 alias mc="mc --nomouse"
 
 f() {
-    # find . -name "*$1*" -print
-    print -C 1 **$1*
+    find . -name "*$1*" -print
 }
 
 alias ssh="TERM=xterm ssh"
@@ -151,12 +150,6 @@ alias gg="git grep "
 export GPG_TTY=$(tty)
 # }}}
 
-# Virtualenv {{{
-venv() {
-    . /usr/local/bin/virtualenvwrapper.sh
-}
-# }}}
-
 # Mail {{{
 mailpath=(
     ~/mail/mbox"?Neue Nachrichten in =mbox"
@@ -225,3 +218,9 @@ done < ~/.zhashd
 # autoenv {{{
 . ~/work/zsh-autoenv/autoenv.zsh
 # }}}
+
+# Virtualenv {{{
+venv() {
+    . /usr/local/bin/virtualenvwrapper.sh
+}
+# }}}