Marty Oehme
2f18a9d5ff
I never use half the aliases that fasd provides by default. To make room for personal quick bindings, simply disable them. They are commented should I want to make use of them in the future.
12 lines
551 B
Bash
12 lines
551 B
Bash
#!/bin/sh
|
|
# more usage instructions at https://github.com/clvv/fasd
|
|
eval "$(fasd --init zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install)"
|
|
|
|
alias a='fasd -a' # any
|
|
alias s='fasd -si' # show / search / select
|
|
# alias d='fasd -d' # directory
|
|
# alias f='fasd -f' # file
|
|
# alias sd='fasd -sid' # interactive directory selection
|
|
# alias sf='fasd -sif' # interactive file selection
|
|
alias z='fasd_cd -d' # cd, same functionality as j in autojump
|
|
alias zz='fasd_cd -d -i' # cd with interactive selection
|