# Tmux configuration file. # Use Vi(m) key bindings. set-option -g status-keys vi set-window-option -g mode-keys vi # Use Ctrl-A as escape binding, like in GNU screen. set-option -g prefix C-a # Ctrl-A a sends Ctrl-A to the process, like in GNU screen. bind-key a send-prefix unbind-key C-b # GNU screen like bindings (with C-x). bind-key C-c new-window bind-key C-a last-window # Switch to next/previos window, like in GNU screen. bind-key C-n next-window bind-key C-p previous-window bind-key C-[ copy-mode bind-key C-] paste-buffer # vim: ft=tmux