Last active
February 10, 2017 13:33
-
-
Save toripiyo/3c08c729a813a46da617626c0a1bdeac to your computer and use it in GitHub Desktop.
my tmux.conf configuraiton
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
# 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