-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
86 lines (65 loc) · 1.93 KB
/
.tmux.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
set-option -g prefix 'C-\'
#bind-key C-a send-prefix
#unbind-key %
bind | split-window -h
bind - split-window -v
bind-key k select-pane -U
bind-key j select-pane -D
bind-key h select-pane -L
bind-key l select-pane -R
bind-key r source-file ~/.tmux.conf \; display "Reloaded!"
bind-key C-UP select-pane -U
bind-key C-DOWN select-pane -D
bind-key C-LEFT select-pane -L
bind-key C-RIGHT select-pane -R
# bind-key -n C-k select-pane -U
# bind-key -n C-j select-pane -D
# bind-key -n C-h select-pane -L
# bind-key -n C-l select-pane -R
#
# unbind-key -n C-k
# unbind-key -n C-j
# unbind-key -n C-h
# unbind-key -n C-l
# Use Meta (Alt) + h/j/k/l to select panes
# bind-key -n M-k select-pane -U
# bind-key -n M-j select-pane -D
# bind-key -n M-h select-pane -L
# bind-key -n M-l select-pane -R
bind H resize-pane -L 5
bind J resize-pane -D 5
bind K resize-pane -U 5
bind L resize-pane -R 5
bind \ last-window
bind C-\ last-window
# w is bound to choose-window
#setw -g mode-mouse on
set -g mouse on
# set -g mouse-select-pane on
# set -g mouse-resize-pane on
# set -g mouse-select-window on
set -g default-terminal "screen-256color"
# status bar colors
set -g status-fg black
set -g status-bg white
setw -g window-status-fg black
setw -g window-status-bg default
setw -g window-status-attr dim
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
set -g pane-border-fg green
set -g pane-border-bg black
set -g pane-active-border-fg white
set -g pane-active-border-bg black
# show activity in other windows
setw -g monitor-activity on
set -g visual-activity on
bind P pipe-pane -o "cat >>~/#W.log" \; display "Toggled logging to ~/#W.log"
# shortcut for a max/unmax pane
unbind M
bind M new-window -d -n tmp \; swap-pane -s tmp.0 \; select-window -t tmp
unbind m
bind m last-window \; swap-pane -s tmp.0 \; kill-window -t tmp
# ssh trick
bind-key S command-prompt -p ssh: "new-window -n %1 'ssh %1'"