-
Notifications
You must be signed in to change notification settings - Fork 1
/
.tmux.conf
50 lines (34 loc) · 1.84 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
set -g default-terminal xterm-256color
set-option -g prefix C-w
unbind-key w
bind-key w send-prefix
bind-key C-w last-window
bind tab select-pane -t :.+
unbind-key "'"
bind-key "'" split-window -h -c '#{pane_current_path}'
unbind-key '"'
bind-key '"' split-window -v -c '#{pane_current_path}'
bind c new-window -c "#{pane_current_path}"
bind k confirm-before "kill-window"
bind K kill-window
bind r command-prompt 'rename-window %%'
set-option -g status-bg black
set-option -g status-fg white
set-option -g status-left ''
#set-option -g status-right "#[fg=cyan][#[default]#(~/Projects/scripts/timed.sh)#[fg=cyan]] #[fg=cyan][#[default]#(~/Projects/scripts/weather.sh)#[fg=cyan]] #[fg=cyan][#[default]%H:%M#[fg=cyan]] [#[default]#(~/Projects/scripts/power.sh)#[fg=cyan]] [#[default]#(uptime | awk '{print $10,$11,$12}')#[fg=cyan]]#[default]"
#set-option -g status-right "#[fg=cyan][#[default]#(~/Projects/scripts/timed.sh)#[fg=cyan]] #[fg=cyan][#[default]%H:%M#[fg=cyan]] [#[default]#(~/Projects/scripts/power.sh)#[fg=cyan]] [#[default]#(uptime | awk '{print $10,$11,$12}')#[fg=cyan]]#[default]"
#set-option -g status-right "#[fg=cyan][#[default]%H:%M#[fg=cyan]] [#[default]#(~/Projects/scripts/power.sh)#[fg=cyan]] [#[default]#(uptime | awk '{print $10,$11,$12}')#[fg=cyan]]#[default]"
set-option -g status-right ""
set-option -g status-right-length 200
set-window-option -g mode-keys vi
set-window-option -g window-status-current-format '#[fg=yellow][#[default]#I #W#[fg=yellow]]#[default]'
set-window-option -g window-status-format ' #I #W '
set -g mouse on
set-window-option -g automatic-rename on
set -g visual-activity off
set -g visual-bell off
# set-window-option -g monitor-activity on
# set-window-option -g window-status-current-fg white
set-window-option -g clock-mode-colour colour166
set-window-option -g clock-mode-style 24
set-option -g history-limit 5000