Created
April 11, 2020 14:06
-
-
Save InvisibleRasta/faf3a9788a4a63e21c0055123bf3efa8 to your computer and use it in GitHub Desktop.
thif function will create aliases for the fish shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#make a function in ~/.config/fish/functions called mkalias.fish and put this in | |
function mkalias --argument key value | |
echo alias $key=$value | |
alias $key=$value | |
funcsave $key | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment