]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - tmux.conf
tmux.conf: Add more bindings to behave similar to GNU screen.
[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 # Switch to last window, like in GNU screen.
11 bind-key C-a last-window
12 # Switch to next/previos window, like in GNU screen.
13 bind-key C-n next-window
14 bind-key C-p previous-window
15 # Insert paste buffer, like in GNU screen.
16 bind-key C-] paste-buffer
17
18 # vim: ft=tmux