Use fish instead of zsh

2016/11/27 Sun

ちまたで(?)話題の fish を使ってみた。

長年使ってきた zsh のかわりにはならないだろうなーと思いながら・・・。


・・・が、いざ使ってみると非常に使いやすい!

zsh のかわりになるどころか置き換えてしまった。
(つまり、自分は結局そこまで zsh を使いこなしていなかったんだろう・・・。)

fish のチュートリアルは、以下にある。

fish tutorial

日本語でもqiitaとかにいっぱい解説記事があるので難しいことはないと思う。 唯一はまったのは、上記tutorialにある、 hybrid_bindings

vi っぽいキーバインドで、 insert モードの場合は emacs っぽくするって感じなんだろうけど、使用できなかった。 なんか issue 上がってたりしたので、そのうち修正されるのかもしれない。

とりあえずは、必要なキーバインドのみを自分で再定義してやることで要望は満たせた。

fish では、 fisherman というプラグインマネージャーが存在しており、これを使って各種プラグインを管理する。 日本語での解説も書いてあるので導入は簡単。

  1. $ curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisher

上記を実行するだけ。

自分が入れたパッケージはとりあえずこんだけ。

  • simple : シンプルなテーマ
  • omf/gi : gitignore を管理できるやつ。

2個だけ。 fish が単体で色々出来るやつだからこそかも。

fish は、設定を ~/.config/fish 配下で管理する。 こんな感じ。

  1. $ tree fish
  2. fish
  3. ├── completions
  4. ├── conf.d
  5. ├── config.fish -> /Users/yukimemi/.dotfiles/.config/fish/config.fish
  6. ├── fishd.xxxxxxxxxxxx
  7. ├── fishfile -> /Users/yukimemi/.dotfiles/.config/fish/fishfile
  8. ├── functions
  9. └── my_functions -> /Users/yukimemi/.dotfiles/.config/fish/my_functions
  1. $ tree my_functions
  2. my_functions
  3. ├── __cdup.fish
  4. ├── __filter_command.fish
  5. ├── __filter_command_execute.fish
  6. ├── __filter_command_history_execute.fish
  7. ├── __filter_command_history_select.fish
  8. ├── __filter_command_select.fish
  9. └── fish_user_key_bindings.fish

それから、上記 fisherman を使っている場合、 ~/.config/fish/functions 配下がどんどん侵されていくので、自分で作成した functionmy_functions というディレクトリ配下で管理することにした。 (シンボリックリンクが嫌な場合、それを解決した fresco というものもあるらしい。)

config.fish から、 my_functions の内容を読み込む。

  • ~/.config/fish/config.fish
  1. # Load my_functions.
  2. for func in ~/.config/fish/my_functions/*.fish
  3. source $func
  4. end

かんたん♪

あとは、 pecofzf などのフィルター系コマンドが使えるようにする。 zsh の時は、fzf を使っていたんだけど、 fzy ってのがあって、 enhancd でおすすめって書いてあったから、とりあえずそれを使ってみる。

まずは、コマンド定義。

  • ~/.config/fish/my_functions/__filter_command.fish
  1. function __filter_command
  2. fzy -l 200
  3. end

fzy を使うよってだけ。 -l オプションは表示する候補数。

それから、これを使って、選択だけするやつと、実行するやつを定義。

  • ~/.config/fish/my_functions/__filter_command_select.fish
  1. function __filter_command_select
  2. __filter_command | read -l line
  3. and commandline $line
  4. end
  • ~/.config/fish/my_functions/__filter_command_execute.fish
  1. function __filter_command_execute
  2. __filter_command | read -l line
  3. and echo "
  4. ------
  5. Running command: $line
  6. ------"
  7. and eval $line
  8. commandline -f repaint
  9. end

今度はこれで履歴検索するやつを作る。

  • ~/.config/fish/my_functions/__filter_command_history_select.fish
  1. function __filter_command_history_select
  2. history | sort -u | __filter_command_select
  3. end
  • ~/.config/fish/my_functions/__filter_command_history_execute.fish
  1. function __filter_command_history_execute
  2. history | sort -u | __filter_command_execute
  3. end

こんな感じ。 簡単でわかりやすい。

あとはこれをキーに割り当てる。 fish では、キーバインドは fish_user_key_bindings という関数で行うのが通例っぽい。

  • ~/.config/fish/my_functions/fish_user_key_bindings.fish
  1. function fish_user_key_bindings
  2. bind -M insert \cf accept-autosuggestion
  3. bind -M insert \cn down-or-search
  4. bind -M insert \cp up-or-search
  5. # TODO: Not work.
  6. bind -M insert \c\^ __cdup
  7. # filter command.
  8. bind -M insert \cr __filter_command_history_select
  9. bind sul __filter_command_history_execute
  10. end

-M オプションでモードを指定できる。

べんりー! あとは、前使ってた enhancd を使いたい。 それから、 C-^ で親ディレクトリに移動するってのを zsh のときにやってたんだけど、それが fish だとうまくできない。

どうやってやればいいんだろ・・・。知ってる人いたら教えてください。


参考

fish - Documentation

初心者がShellを知りFish〜Fishermanを導入するまで

fish-shell と fisherman の tips