-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.tmux.conf
More file actions
48 lines (42 loc) · 1.55 KB
/
Copy path.tmux.conf
File metadata and controls
48 lines (42 loc) · 1.55 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 base-index 1
set-option -g default-terminal "screen-256color"
set-option -g escape-time 0
set-option -g message-bg colour235
set-option -g message-fg colour166
# set-option -g mouse on
# set-option -g mouse-select-pane on
# set-option -g mouse-select-window on
set-option -g prefix C-a
set-option -g status-attr default
set-option -g status-bg colour235
set-option -g status-fg colour136
set-option -g status-interval 1
set-option -g status-justify centre
set-option -g status-left "#[fg=green][ #H ]#[default]"
set-option -g status-left-length 20
set-option -g status-right "#[fg=green][ #[fg=blue]%Y-%m-%d #[fg=white]%l:%M:%S %p #[fg=green]]#[default]"
set-option -g status-right-length 40
set-option -g visual-activity on
set-window-option -g automatic-rename off
set-window-option -g monitor-activity on
set-window-option -g mode-mouse on
set-window-option -g window-status-fg colour244
set-window-option -g window-status-bg default
set-window-option -g window-status-current-fg colour196
set-window-option -g window-status-current-bg default
unbind-key C-b
unbind-key '"'
unbind-key %
bind-key | split-window -h
bind-key - split-window -v
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key C-d detach
bind-key R source-file ~/.tmux.conf \; display-message "Config reloaded..."
bind-key C command-prompt -p "Name of new window: " "new-window -n '%%'"
bind-key -n M-Left previous-window
bind-key -n M-Right next-window
bind-key -n C-S-Left swap-window -t -1
bind-key -n C-S-Right swap-window -t +1