Last active
March 10, 2016 03:30
-
-
Save gujiaxi/62ac83c246654bc6637c to your computer and use it in GitHub Desktop.
Minimalist Tmux Config for Servers
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
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# navigate panes | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
# navigate windows | |
bind Space last-window | |
# titles | |
set -g set-titles on | |
set -g set-titles-string '#h ❐ #S ● #I #W' | |
# set vi mode | |
setw -g mode-keys vi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment