aboutsummaryrefslogtreecommitdiffhomepage
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/tmux.conf17
1 files changed, 12 insertions, 5 deletions
diff --git a/misc/tmux.conf b/misc/tmux.conf
index 0806bbf..70c3188 100644
--- a/misc/tmux.conf
+++ b/misc/tmux.conf
@@ -1,21 +1,28 @@
1set -g default-terminal "tmux-256color" 1set -g default-terminal "tmux-256color"
2set -ag terminal-overrides ",xterm-256color:RGB" 2set -ag terminal-overrides ",xterm-256color:RGB"
3set -sg escape-time 0
3 4
5# Use Ctrl-G for prefix
4unbind C-b 6unbind C-b
5set-option -g prefix C-g 7set-option -g prefix C-g
6bind-key C-g send-prefix 8bind-key C-g send-prefix
9
7set-option -gw xterm-keys on 10set-option -gw xterm-keys on
11
12# Tab key
8bind-key -nr C-_ send-keys C-/ 13bind-key -nr C-_ send-keys C-/
9 14
10new-session # Start a new session if none available 15new-session # Start a new session if none available
16
11bind N new-session 17bind N new-session
12bind-key -n C-F3 set-option -g status #Ctrl+F3 Combo 18bind-key -n C-F3 set-option -g status #Ctrl+F3 Combo
13 19
14bind k copy-mode 20bind k copy-mode
21bind-key T swap-window -t 0
15 22
16set -sg escape-time 0 23bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
17 24
18#bind C-q select-layout even-horizontal 25bind C-q select-layout even-horizontal
19#bind C-w select-layout even-vertical 26bind C-w select-layout even-vertical
20#bind C-e select-layout main-horizontal 27bind C-e select-layout main-horizontal
21#bind C-r select-layout main-vertical 28bind C-r select-layout main-vertical