Skip to content

Instantly share code, notes, and snippets.

@gujiaxi
Last active March 10, 2016 03:30
Show Gist options
  • Save gujiaxi/62ac83c246654bc6637c to your computer and use it in GitHub Desktop.
Save gujiaxi/62ac83c246654bc6637c to your computer and use it in GitHub Desktop.
Minimalist Tmux Config for Servers
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