Skip to content

Instantly share code, notes, and snippets.

@kdave
Created July 15, 2016 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdave/b5f4f4c032bfafa09c6f8e5ef1b5529c to your computer and use it in GitHub Desktop.
Save kdave/b5f4f4c032bfafa09c6f8e5ef1b5529c to your computer and use it in GitHub Desktop.
tmux config
# C-b is a bad idea
unbind C-b
set -g prefix C-a
bind a send-prefix
unbind l
bind-key C-a last-window
bind-key space next-window
# split
unbind % # Remove default binding since we’re replacing
unbind '"'
bind | split-window -h
bind - split-window -v
set -g history-limit 10000
set -g status-interval 60
set-window-option -g window-status-current-bg red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment