Skip to content

Instantly share code, notes, and snippets.

@Timvd
Forked from spicycode/tmux.conf
Last active February 20, 2018 14:37
Show Gist options
  • Select an option

  • Save Timvd/e67b03b2c1a28071eec8bb45c1f8ff81 to your computer and use it in GitHub Desktop.

Select an option

Save Timvd/e67b03b2c1a28071eec8bb45c1f8ff81 to your computer and use it in GitHub Desktop.
The best and greatest tmux.conf ever
set -g prefix `
bind ` send-prefix
bind - split-window
bind \ split-window -h
bind | split-window -h
bind b setw synchronize-panes on
bind B setw synchronize-panes off
bind r source-file ~/.tmux.conf
bind m set -g mouse on
bind M set -g mouse off
# Vim style pane selection
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set -g default-terminal "screen-256color"
set -g history-limit 10000
set -g base-index 1
setw -g pane-base-index 1
set -g set-titles on
set -g set-titles-string "#S: #W"
setw -g xterm-keys on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment