Skip to content

Instantly share code, notes, and snippets.

@alertedsnake
Created November 25, 2015 14:46
Show Gist options
  • Save alertedsnake/58f057b9ab45fdd831f3 to your computer and use it in GitHub Desktop.
Save alertedsnake/58f057b9ab45fdd831f3 to your computer and use it in GitHub Desktop.
Some useful tmux options, like making it use ^a like screen does
start-server
set -g prefix C-a
unbind C-b
bind C-a send-prefix
set -g status-keys vi
setw -g mode-keys vi
set -g status off
unbind ^L
bind ^L refresh-client
bind C-[ copy-mode
bind C-p previous-window
bind C-n next-window
unbind ^A
bind ^A last-window
set-window-option -g aggressive-resize on
unbind d
bind d detach-client
set -g default-terminal "screen-256color-bce"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment