diff options
Diffstat (limited to 'zsh')
-rwxr-xr-x | zsh/.zshrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -65,6 +65,10 @@ bind() { | |||
65 | ssh -L localhost\:$1\:localhost\:$1 $2 | 65 | ssh -L localhost\:$1\:localhost\:$1 $2 |
66 | } | 66 | } |
67 | 67 | ||
68 | findstr() { | ||
69 | find . -type f -exec grep -H "$1" {} \; | ||
70 | } | ||
71 | |||
68 | # Enable colors and change prompt: | 72 | # Enable colors and change prompt: |
69 | autoload -U colors && colors | 73 | autoload -U colors && colors |
70 | fpath+=$HOME/.cache/zsh/pure | 74 | fpath+=$HOME/.cache/zsh/pure |