/usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install fish
https://stackoverflow.com/questions/453236/how-to-set-my-default-shell-on-mac
sudo sh -c 'echo /usr/local/bin/fish >> /etc/shells'
chsh -s /usr/local/bin/fish
curl -L https://get.oh-my.fish | fish
https://github.com/oh-my-fish/theme-bobthefish https://www.nerdfonts.com/
omf install bobthefish
brew tap homebrew/cask-fonts
brew cask install font-hermit-nerd-font
set -U theme_nerd_fonts yes
set -Ux LSCOLORS gxfxbEaEBxxEhEhBaDaCaD
This step is done in preferences of each terminal. Select Hermut
or the preferred nerd font.
Check https://iterm2.com/ for an awesome terminal option.
execute fish_config
to open the web browser config for fish
fish_config
brew install fortune
vim ~/.local/share/omf/themes/bobthefish/fish_greeting.fish
function fish_greeting -d "What's up, fish?"
set_color $fish_color_autosuggestion
echo ""
printf "🔮 "
fortune -a
echo ""
set_color normal
end
https://code.visualstudio.com/
in settings.json
“terminal.integrated.shell.osx”: “/usr/local/bin/fish”,
“terminal.integrated.fontSize”: 14,
“terminal.integrated.fontFamily”: “Hermut Nerd Font”
https://medium.com/tuannguyendotme/set-up-the-fish-shell-on-mac-step-by-step-6a77bcb2687c https://mvolkmann.github.io/fish-article/