Created
August 12, 2016 03:44
-
-
Save komsit37/9c5d27022dd9c58d77757b56d3158957 to your computer and use it in GitHub Desktop.
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
| #put this file in ~/ | |
| unbind C-b | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| set -sg escape-time 1 # quicker responses | |
| set -g base-index 1 # Numbering of windows | |
| setw -g pane-base-index 1 # Numbering of Panes | |
| bind \ split-window -h # Split panes horizontal | |
| bind - split-window -v # Split panes vertically | |
| bind R source-file ~/.tmux.conf \; display "Reloaded!" # Reload with R | |
| bind-key x kill-pane | |
| bind-key X kill-window |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment