Skip to content

Instantly share code, notes, and snippets.

@mmitou
Created July 12, 2013 09:22
Show Gist options
  • Select an option

  • Save mmitou/5983083 to your computer and use it in GitHub Desktop.

Select an option

Save mmitou/5983083 to your computer and use it in GitHub Desktop.
tmuxの設定サンプル
# 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