Created
November 10, 2014 02:51
-
-
Save alculquicondor/8281d64bc6e7f5c3a99a 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
| unbind C-b | |
| set-option -g prefix C-e | |
| set -g mode-mouse on | |
| set-option -g mouse-select-pane on | |
| set-option -g mouse-select-window on | |
| #set -g terminal-overrides 'xterm*:smcup@:rmcup@' | |
| set -g default-terminal "screen-256color" | |
| unbind-key c | |
| bind-key c neww -c "#{pane_current_path}" | |
| unbind-key "\"" | |
| bind-key "\"" splitw -c "#{pane_current_path}" | |
| unbind-key % | |
| bind-key % splitw -h -c "#{pane_current_path}" | |
| # I'm a Vim user, this makes navigation easier | |
| setw -g mode-keys vi # I especially like being able to search with /,? when in copy-mode | |
| unbind-key j | |
| bind-key j select-pane -D # Similar to 'C-w j' to navigate windows in Vim | |
| unbind-key k | |
| bind-key k select-pane -U | |
| unbind-key h | |
| bind-key h select-pane -L | |
| unbind-key l | |
| bind-key l select-pane -R |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment