-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.tmux.conf
More file actions
79 lines (56 loc) · 1.4 KB
/
Copy path.tmux.conf
File metadata and controls
79 lines (56 loc) · 1.4 KB
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
set -g prefix C-a
unbind C-b
bind a send-prefix
bind m setw monitor-activity
unbind *
bind * list-clients
unbind A
bind A command-prompt "rename-window %%"
unbind ^A
bind ^A last-window
unbind ' '
bind ' ' next-window
unbind ^' '
bind ^' ' next-window
unbind ^P
bind ^P previous-window
unbind ^N
bind ^N next-window
unbind K
bind K "kill-window"
unbind x
bind x kill-pane
# Fullscreen
bind F resize-pane -Z
bind S setw synchronize-panes
bind N next-layout
bind P previous-layout
bind J choose-window -F "#{window_index}: #{window_name}" "join-pane -h -t %%"
bind B break-pane
bind k select-pane -U
bind j select-pane -D
bind h select-pane -L
bind l select-pane -R
unbind >
bind > save-buffer /tmp/screen-exchange.txt
unbind ^L
bind ^L refresh-client
unbind l
bind l refresh-client
set -g history-limit 50000
set -g display-time 3000
set -g display-panes-time 2000
setw -g clock-mode-style 24
setw -g mode-keys vi
set -g default-terminal "screen-256color"
# Make highlight in less reverse not italics
# See also: http://superuser.com/questions/891336/fixed-highlighting-in-tmux
set -g terminal-overrides 'xterm*:sitm@,ritm@'
set -g update-environment ''
new -d -s0 -n l0
set -g status-bg white
set -g status-fg blue
set -t0 status-left "#[bg=black,fg=white]#(hostname)#[default]"
set -g status-right "#[fg=red]%H:%M %Y-%m-%d"
set -g status-right-length 50
set -g window-status-current-style fg=red,bright