Humanity

Edit the world by your favorite way

tmux導入

こんな感じにしました。
source-fileというファイルを読み込むコマンドがあるそうなので
それを使ってscreen-keys.confを基にいろいろ.screenrcに書いてあるものをtmuxに移してみた。

$ cd
$ mkdir .tmux
$ cp /usr/share/doc/tmux/examples/screen-keys.conf .tmux
$ cat >.tmux.conf
source-file $HOME/.tmux/screen-keys.conf

set -g prefix ^Q

bind ^K copy-mode
bind h previous-window
unbind k
bind l next-window
bind w list-windows
$