1
0
Fork 0
mirror of synced 2024-06-01 23:01:11 -04:00
zimfw/modules/fasd/init.zsh

10 lines
296 B
Bash
Raw Normal View History

source ${0:h}/external/fasd --init env || return 1
local fasd_cache="${0:h}/cache.zsh"
if [[ ! -e ${fasd_cache} ]]; then
fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install > ${fasd_cache}
fi
source ${fasd_cache} || return 1
2018-05-07 18:27:27 -04:00
alias v='f -e vim -b viminfo'