fish shell
- fishシェルがとても素晴らしかったので、お伝えします。 | megane9988のブログ
- fish-shellを使ってみませんか - Qiita
- zsh から fish にした。 - yoshiori.github.io
Fisherman
oh-my-fish
Install fish shell
$ brew install fish
$ echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
$ chsh -s /usr/local/bin/fish
Required fish version: v2.3.0 on Fisherman
https://github.com/fisherman/fisherman#what-is-the-required-fish-version
$ brew up; and brew upgrade --HEAD fish
Install Fisherman
fisherman/fisherman: fish plugin manager http://fisherman.sh
config
# config file
$ vim .config/fish/config.fish
# reload config
$ source .config/fish/config.fish
writing config.fish
# .bashrc
export PATH=$HOME/.nodebrew/current/bin:$PATH
# config.fish (command like, space separated)
set PATH $PATH $HOME/.nodebrew/current/bin
set export
set -gx http_proxy http://localhost:8080