Created
July 12, 2013 09:22
-
-
Save mmitou/5983083 to your computer and use it in GitHub Desktop.
tmuxの設定サンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Prefix | |
| set-option -g prefix C-z | |
| # 日本語環境 | |
| setw -g utf8 on | |
| set -g status-utf8 on | |
| # 設定の再読み込み | |
| bind C-r source-file ~/.tmux.conf | |
| # マウスでスクリーンをスクロールする | |
| set-window-option -g mode-mouse on | |
| # C-z C-c で tmux から x のバッファにコピーする | |
| bind-key C-c run "tmux save-buffer - | xclip -i" | |
| # C-z C-v で x のバッファからtmuxにペーストする | |
| bind-key C-v run "xclip -o | tmux load-buffer - && tmux paste-buffer" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment