Reorganize files to use stow for installation #dotfiles

This commit is contained in:
Colin Powell
2019-01-10 10:19:27 -05:00
parent cbbffe7f60
commit eaa394e556
123 changed files with 2227 additions and 131 deletions

View File

@ -0,0 +1,9 @@
function fasd_cd -d "fasd builtin cd"
if test (count $argv) -le 1
command fasd "$argv"
else
set -l ret (command fasd -e 'printf %s' $argv)
test -z "$ret"; and return
test -d "$ret"; and cd "$ret"; or printf "%s\n" $ret
end
end