Directly from CLI
alias x='exit'
funcsave x
or create a file in
~/.config/fish/functions 
with name
homestead.fish
and put
function homestead
        set DIR $PWD
        cd ~/Homestead
        eval vagrant $argv
        cd $DIR
end
Directly from CLI
alias x='exit'
funcsave x
or create a file in
~/.config/fish/functions 
with name
homestead.fish
and put
function homestead
        set DIR $PWD
        cd ~/Homestead
        eval vagrant $argv
        cd $DIR
end
Nice!