Skip to content

Instantly share code, notes, and snippets.

@chkilel
Forked from gagarine/fish_install.md
Created August 15, 2022 15:59
Show Gist options
  • Save chkilel/6cbd80bd1f69defbfffe8a6189360aac to your computer and use it in GitHub Desktop.
Save chkilel/6cbd80bd1f69defbfffe8a6189360aac to your computer and use it in GitHub Desktop.
Install fish shell on macOS Mojave with brew

Install Fish

brew install fish

Add brew binary in fish path (More info: https://fishshell.com/docs/current/tutorial.html#tut_path )

set -U fish_user_paths /usr/local/bin $fish_user_paths

Add fish to the know shells

sudo echo /usr/local/bin/fish >> /etc/shells

Make fish the default shell

chsh -s /usr/local/bin/fish

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment