Created
November 25, 2012 03:32
-
-
Save jimnanney/4142309 to your computer and use it in GitHub Desktop.
My tmux configuration
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
| set -g prefix C-a | |
| unbind C-b | |
| set -s escape-time 1 | |
| set -g base-index 1 | |
| set -g pane-base-index 1 | |
| bind r source-file ~/.tmux.conf\; display "Reloaded!" | |
| bind C-a send-prefix | |
| bind | split-window -h | |
| bind - split-window -v | |
| bind h select-pane -L | |
| bind j select-pane -D | |
| bind k select-pane -U | |
| bind l select-pane -R | |
| bind -r C-h select-window -t :- | |
| bind -r C-l select-window -t :+ | |
| bind -r H resize-pane -L 5 | |
| bind -r J resize-pane -D 5 | |
| bind -r K resize-pane -U 5 | |
| bind -r L resize-pane -R 5 | |
| set -g repeat-time 1000 | |
| set -g status-bg colour33 | |
| setw -g mode-keys vi |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is my tmux.conf that I use to make tmux a little more vim like and a little easier for me to use.