-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux_windows_putty.conf
49 lines (36 loc) · 990 Bytes
/
tmux_windows_putty.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Window Navigation
bind-key -n F1 previous-window
bind-key -n F2 next-window
bind-key -n F3 next-window
bind-key C-x last-window
# Dial r for Reload
bind r source-file ~/.tmux.conf \; display "Reloaded!"
set -g history-limit 100000
set-window-option -g aggressive-resize on
# Active window settings
set-window-option -g window-status-current-bg red
set-window-option -g window-status-current-fg white
# KeyFormat VI
setw -g mode-keys vi
# Watchdog
setw -g monitor-activity on
set -g visual-activity on
# Window/Tab Title
set -g set-titles on
set -g set-titles-string "#S:#P:#H"
# Split Routine
unbind %
bind | split-window -h
bind _ split-window -v
# If Resizing is not automatic use <HotKey> + f
bind f attach -d
# UTF
set -g status-utf8 on
bind-key -n F1 previous-window
bind-key -n F2 next-window
bind-key -n F3 new-window
bind-key C-y \
capture-pane -S -32768 \;\
save-buffer "/tmp/.tmux.buffer" \;\
delete-buffer \;\
display "Saved buffer" \;