I would like to define some aliases in fish. Apparently it should be possible to define them in
~/.config/fish/functions
but they don\'t g
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
and this will create aliases automatically.