]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - tmux.conf
tmux.conf: Add more screen-like bindings.
[config/dotfiles.git] / tmux.conf
1 # Tmux configuration file.
2
3
4 # Use Ctrl-A as escape binding, like in GNU screen.
5 set-option -g prefix C-a
6 # Ctrl-A a sends Ctrl-A to the process, like in GNU screen.
7 bind-key a send-prefix
8 unbind-key C-b
9
10 # GNU screen like bindings (with C-x).
11 bind-key C-c new-window
12 bind-key C-a last-window
13 # Switch to next/previos window, like in GNU screen.
14 bind-key C-n next-window
15 bind-key C-p previous-window
16 bind-key C-[ copy-mode
17 bind-key C-] paste-buffer
18
19 # vim: ft=tmux