-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
48 lines (34 loc) · 1.2 KB
/
.tmux.conf
File metadata and controls
48 lines (34 loc) · 1.2 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
set-option -g prefix `
unbind-key C-b
bind-key ` last-window
bind-key a send-prefix
bind-key K swap-pane -U
bind-key J swap-pane -D
set-option -g default-terminal screen-256color
set-option -g status-keys vi
set-option -g bell-action any
set-option -g set-titles on
set-option -g visual-bell on
set-option -g aggressive-resize on
setw -g mode-keys vi
bind _ set monitor-silence 30
bind e previous-window
bind f next-window
set-option -g status-justify left
set-option -g status-bg black
set-option -g status-fg white
set-option -g pane-active-border-style "fg=green bg=black"
set-option -g pane-border-style "fg=white bg=black"
set-option -g message-style "fg=black bg=green"
# really try to make sure home/end work
bind-key -n Home send Escape "OH"
bind-key -n End send Escape "OF"
# show messages for 1 second
set-option -g display-time 1000
setw -g window-status-style bg=black
setw -g window-status-current-style fg=green
set -g status-left '#[fg=green][ #[fg=red]#H#[fg=green] #[fg=green]][#[default]'
set -g status-right '#[fg=green]][ #(~/bin/screenguppy 13) #[fg=yellow]%Y-%m-%d #[fg=white]%H:%M#[fg=green] ]'
set -g history-limit 10000
# `+r reloads the configuration, handy
bind r source-file ~/.tmux.conf