💬

openSUSEにtmux-powerline導入

2022/08/20に公開

環境

  • openSUSE Tumbleweed
    たぶん他のlinuxディストリビューションでも同じ方法でいけるんじゃないかな

インストール

https://github.com/erikw/tmux-powerline

特にこだわりは無いですがoptフォルダにダウンロード

mkdir ~/opt
cd ~/opt
git clone https://github.com/erikw/tmux-powerline.git

設定ファイルを開いて

vi ~/.tmux.conf

下記を追記

set-option -g status on
set-option -g status-interval 2
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set-option -g status-left "#(~/path/to/tmux-powerline/powerline.sh left)"
set-option -g status-right "#(~/path/to/tmux-powerline/powerline.sh right)"
set-hook -g session-created 'run-shell "~/path/to/tmux-powerline/powerline.sh init"' # prettifies the window-status segments

下から3行、
/path/to
をoptに変更します。

source ~/.tmux.conf

導入だけであればこれで問題ないはず。

Discussion