Created
November 9, 2011 09:06
-
-
Save hikoz/1350905 to your computer and use it in GitHub Desktop.
tmux.conf
This file contains 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
set-option -g prefix C-t | |
unbind-key C-b | |
bind C-r source-file ~/.tmux.conf | |
set-window-option -g mode-keys vi | |
bind -r C-h resize-pane -L 6 | |
bind -r C-l resize-pane -R 6 | |
bind -r C-j resize-pane -D 6 | |
bind -r C-k resize-pane -U 6 | |
bind -r s swap-pane -U | |
bind k kill-pane | |
bind K kill-window | |
bind i display-panes | |
bind y copy-mode | |
bind p paste-buffer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment