# Tmux configuration file. # 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 # Switch to last window, like in GNU screen. 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 # Insert paste buffer, like in GNU screen. bind-key C-] paste-buffer # vim: ft=tmux