Simplify installation process

This commit is contained in:
Arash Rouhani 2012-07-08 13:51:07 +02:00
parent d6b43a647c
commit 87154e5b4a
2 changed files with 8 additions and 6 deletions

View file

@ -9,12 +9,7 @@ To install just clone it to `~/.zsh/functional`
and add and add
# Load functions . ~/.zsh/functional/load
func_reps=( ~/.zsh/functional/src )
for rep in $func_reps; do
fpath=($rep $fpath)
autoload -U $rep/*(:t)
done
to your `.zshrc` to your `.zshrc`

7
load Normal file
View file

@ -0,0 +1,7 @@
# Load functions
func_reps=( ~/.zsh/functional/src )
for rep in $func_reps; do
fpath=($rep $fpath)
autoload -U $rep/*(:t)
done