Ticket #46019: tmux.conf

File tmux.conf, 634 bytes (added by Tatsh (Andrew Udvare), 9 years ago)
Line 
1unbind C-b
2set -g prefix C-a
3set -g history-limit 10000
4bind-key a send-key C-a
5bind-key C-a last-window
6
7# vi mode
8setw -g mode-keys vi
9set -g status-keys vi
10
11# Bind extra keys for page up/down mainly for laptop use
12bind-key -t vi-edit Up history-up
13bind-key -t vi-edit Down history-down
14
15bind r source-file ~/.tmux.conf \; display-message "Configuration reloaded..."
16
17# Colours
18set-option -g status-bg cyan
19
20# Refresh the status bar every 30 seconds
21set-option -g status-interval 30
22
23# Open new window in current directory, for tmux 1.9+
24bind-key c new-window -c "#{pane_current_path}"
25
26# Faster escape
27set-option -sg escape-time 0