Created
October 16, 2016 15:42
-
-
Save belljustin/b8b6e1cd038c00147aedbe983ed12801 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
| # remap prefix from 'C-b' to 'C-a' | |
| unbind C-b | |
| set-option -g prefix C-a | |
| bind-key C-a send-prefix | |
| # switch panes using Alt-arrow without prefix | |
| bind -n M-h select-pane -L | |
| bind -n M-l select-pane -R | |
| bind -n M-j select-pane -U | |
| bind -n M-k select-pane -D | |
| # highlight activrrpane | |
| set-option -g pane-active-border-fg blue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment