Created
April 23, 2017 08:27
-
-
Save melvinsh/2db22a9736a7d035e1d5bfc242d1586e to your computer and use it in GitHub Desktop.
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
# Alt - Z | |
unbind C-b | |
set-option -g prefix M-z | |
bind-key M-z send-prefix | |
# Splitting | |
bind \ split-window -h | |
bind - split-window -v | |
unbind '"' | |
unbind % | |
# Reloading config | |
bind r source-file ~/.tmux.conf | |
# Navigating | |
bind -n M-Left select-pane -L | |
bind -n M-Right select-pane -R | |
bind -n M-Up select-pane -U | |
bind -n M-Down select-pane -D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment