This is an old revision of the document!
Fish
I think I like fish more than zsh, but still undecided. Not being able to copy paste commands online intended for bash can be annoying but other than that it is quite good and has nice defaults.
Aliases
Aliases are created by simply creating a file in ~/.config/fish/functins
Example mkcd
function mkcd mkdir -p $argv and cd $argv end
or you can use more typical alias syntax
alias p3="python3" funcsave p3
Installation
sudo apt install fish # oh-my-fish curl -L https://get.oh-my.fish | fish
OMF Themes
# install robbyrussell theme omf install robbyrussell # set theme omf theme robbyrussell