Created
September 7, 2016 02:17
-
-
Save lloydroc/d9d22e092821ab684139f4ce66e8cdf3 to your computer and use it in GitHub Desktop.
Configuration File for TMUX
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
| # split panes using | and - | |
| bind | split-window -h | |
| bind - split-window -v | |
| unbind '"' | |
| unbind % | |
| # reload config file (change file location to your the tmux.conf you want to use) | |
| bind r source-file ~/.tmux.conf | |
| # Enable mouse control (clickable windows, panes, resizable panes) | |
| set -g mouse-select-window on | |
| set -g mouse-select-pane on | |
| set -g mouse-resize-pane on | |
| # switch panes using VI directions on home row | |
| bind h select-pane -L | |
| bind l select-pane -R | |
| bind k select-pane -U | |
| bind j select-pane -D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment