Mac(iTerm2)でfish + fisherman
fishのインストール
$ brew install fish
確認
$ fish -v
fish, version 2.7.1
みたいなバージョンが出ればおつけー
fishの保存場所確認
$ which fish
/usr/local/bin/fish
次の作業でこのパスを使います
which
はコマンドのフルパスが見れる的なやつです
パスを通す
$ sudo vim /etc/shells
先ほどwhich fish
で確認した/usr/local/bin/fish
を最後の行に追記。
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/usr/local/bin/fish ← これ
/etc/shells
はshellを管理しているとこ。bash、zshとかが元から入ってる
ログインシェルの変更
$ chsh -s /usr/local/bin/fish
chsh
はログインシェルを変更するコマンド。-sをつけないと対話的に動作する。
iTerm再起動。
fishermanを入れる
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
fishのテーマ変更
ここから好きなテーマを入れる。
力尽きたので参考になりそうな記事のリンクを貼らさせていただいて終わります。
参考
以下のサイトを参考にさせていただいてます
https://nonsensej.xyz/articles/wp/741
参考になりそうな記事
Author And Source
この問題について(Mac(iTerm2)でfish + fisherman), 我々は、より多くの情報をここで見つけました https://qiita.com/birdmoor23/items/a52ecb3a7c57e28fb031著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .