2012-05-23 23:47:06 +00:00
|
|
|
if [ $commands[fasd] ]; then # check if fasd is installed
|
2015-06-02 20:43:38 +00:00
|
|
|
fasd_cache="${ZSH_CACHE_DIR}/fasd-init-cache"
|
2013-04-30 04:51:09 +00:00
|
|
|
if [ "$(command -v fasd)" -nt "$fasd_cache" -o ! -s "$fasd_cache" ]; then
|
|
|
|
fasd --init auto >| "$fasd_cache"
|
|
|
|
fi
|
|
|
|
source "$fasd_cache"
|
|
|
|
unset fasd_cache
|
2015-08-04 23:02:17 +00:00
|
|
|
|
2016-05-22 00:52:11 +00:00
|
|
|
alias v="f -e $EDITOR"
|
2015-08-04 23:02:17 +00:00
|
|
|
alias o='a -e open_command'
|
2012-05-23 23:47:06 +00:00
|
|
|
fi
|