iTerm2 ことはじめ for fish
まっさらな iTerm2 があります。
最初に iTerm2 の設定をしましょう。
Preferences->General->Window とすすみ Adjust window when changing font size をオフにします。
Preferences->Profiles->General の Working Directory で Reuse previous session's directory にします。
つぎに brew をいれます。 それ経由で fish いれます。
$ brew install fish
$ chsh -s /usr/local/bin/fish
したいのですが、non-standard などのエラーがでるので、 /etc/shells
に /usr/local/bin/fish
を追記してから chsh をうちます。
これで、シェルの変更まで出来ました。
次に色を変えます。
$ fish_config
でテーマを選んだり。
iTerm の設定から、color を import したりしましょう。
背景は 232323
で color preset は Tomorrow Night を選びがちです。
その次は prompt を変えましょう。これも fish_config
でいけます。ほんとうに って便利です。
ぼくは好みにの形があるので、以下のように書いておきます。
function fish_prompt
set prompt (set_color green)(prompt_pwd)
set git (set_color blue)(__fish_git_prompt)
set symbol (set_color normal)"\$ "
echo -n $prompt
echo $git
echo $symbol
end
このあとは、fisher を入れてそれ経由で z をいれます。
$ curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
$ fisher add jethrokuan/z
z 便利すぎます。
fzf をいれます。
$ brew install fzf
$ fisher add jethrokuan/fzf
つぎにターミナル立ち上げ時に表示される
Last login: Tue Nov 26 19:15:44 on ttys001
Welcome to fish, the friendly interactive shell
を消します。
$ touch .hushlogin
$ set fish_greeting
あとは fish Awesome なやつを眺めてカスタマイズしてみてください。
https://github.com/jorgebucaran/awesome-fish
thanks!
Author And Source
この問題について(iTerm2 ことはじめ for fish), 我々は、より多くの情報をここで見つけました https://qiita.com/mochizukikotaro/items/a0839514b7366a420e44著者帰属:元の著者の情報は、元の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 .