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