これはなに

こんな感じでtmuxでwindowをfzfで切り替えられるようにするための設定方法

https://blog.kyu08.com/posts/my-dev-setup-terminal/tmux-fzf.gif

手順

  1. .tmux.confに以下を追記

    set -g @plugin 'tmux-plugins/tpm' # すでにある場合は不要
    set -g @plugin 'sainnhe/tmux-fzf'
    bind-key "space" run-shell -b "${HOME}/.tmux/plugins/tmux-fzf/scripts/window.sh switch" # `prefix + space`で起動
    
    run '~/.tmux/plugins/tpm/tpm' # すでにある場合は不要
    
  2. prefix + Iでtpm経由でプラグインをインストール(prefix + iではないので注意)