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
This is how I define a new function foo, run it, and save it persistently.
foo
sthorne@pearl~> function foo echo 'foo was here' end sthorne@pearl~> foo foo was here sthorne@pearl~> funcsave foo