Skip to content

Instantly share code, notes, and snippets.

@toripiyo
Last active February 10, 2017 13:33
Show Gist options
  • Save toripiyo/3c08c729a813a46da617626c0a1bdeac to your computer and use it in GitHub Desktop.
Save toripiyo/3c08c729a813a46da617626c0a1bdeac to your computer and use it in GitHub Desktop.
my tmux.conf configuraiton
# decrease key stroke delay
set -sg escape-time 1
# enable mouse operation
set-option -g mouse on
# fix window name
set-option -g allow-rename off
###############
# key binding #
###############
## move window
bind -n Left previous-window
bind -n Right next-window
## reload .tmux.conf file
bind r source-file ~/.tmux.conf \; display-message "Reload Config!!"
## unbind default prefix key
unbind-key C-b
## make Ctrl+j prefix key
set-option -g prefix C-j
bind-key C-j send-prefix
## synchronize shortcut key
bind e setw synchronize-panes on
bind E setw synchronize-panes off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment