Skip to content

Fish shell

The fish shell is my shell of choice.

The help function opens local documentation in the browser. You can use help <command> to go directly to the help page of that builtin command.

Aliasing

Usually I will alias like this:

fish
alias -s <name>="<definition>"

This will save a new function in my fish configuration directory (using funcsave).

Plugins and packages

I like fisher for adding plugins.

sh
# install a plugin
fisher install package/name

# update installed plugins
fisher update

# list installed plugins
fisher list

Here's my current setup:

$ fisher list
franciscolourenco/done
edc/bass
jorgebucaran/humantime.fish
jethrokuan/z
jorgebucaran/fisher

This work is licensed under CC BY-NC-ND 4.0