Skip to content

Instantly share code, notes, and snippets.

@benevolent0505
Created March 1, 2015 06:28
Show Gist options
  • Save benevolent0505/9037afc7198b39f87d71 to your computer and use it in GitHub Desktop.
Save benevolent0505/9037afc7198b39f87d71 to your computer and use it in GitHub Desktop.
my .tmux.conf
# prefixキーをC-tに変更
set -g prefix C-t
# C-bのキーバインドを解除
unbind C-b
bind C-t send-prefix
# キーストロークのディレイを減らす
set -sg escape-time 1
# | でペインを縦に分割する
bind 3 split-window -h -c "#{pane_current_path}"
# - でペインを横に分割する
bind 2 split-window -v -c "#{pane_current_path}"
# マウス操作を有効
setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
# 256色端末を使用する
set-option -g default-terminal "xterm-256color"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment