Skip to content

Instantly share code, notes, and snippets.

@Parables
Forked from tikolakin/fish_alias.md
Created June 12, 2021 03:26
Show Gist options
  • Save Parables/a4c24a0c0dc50a95435affbcc5626f60 to your computer and use it in GitHub Desktop.
Save Parables/a4c24a0c0dc50a95435affbcc5626f60 to your computer and use it in GitHub Desktop.
Create alias in Fish shell and save this as a permanent function

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment