Skip to content

Instantly share code, notes, and snippets.

@ghewgill
Created August 25, 2014 21:33
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 ghewgill/62d55f79bb01c3daa4b8 to your computer and use it in GitHub Desktop.
Save ghewgill/62d55f79bb01c3daa4b8 to your computer and use it in GitHub Desktop.
Configuration file for tmux that makes it more like screen.
set -g prefix ^A
bind-key ^A last-window
bind-key ^C new-window
bind-key ^D detach-client
bind-key ^N next-window
bind-key ^P previous-window
bind-key ^W list-windows
bind-key space next-window
bind-key a send-prefix
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key | split-window -h
bind-key - split-window -v
setw -g window-status-current-fg white
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment