Skip to content

Instantly share code, notes, and snippets.

@tmbdev
Created February 9, 2015 18:43
Show Gist options
  • Save tmbdev/ab4f646369a6c5269e32 to your computer and use it in GitHub Desktop.
Save tmbdev/ab4f646369a6c5269e32 to your computer and use it in GitHub Desktop.
# A tmux configuration file with some smallish modifications that make it work better
# for Emacs users. Main difference is that the escape key is C-\ instead of C-b
set-option -g prefix 'C-\'
unbind C-b
unbind r
bind r source-file ~/.tmux.conf
set-option -g mouse-select-pane on
set-option -g mode-mouse off
set-option -g mode-keys emacs
unbind 'C-\'
bind 'C-\' select-pane -t :.+
bind C-n next-window
bind C-p previous-window
bind '\' send-keys 'C-\'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment