-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tmux.conf
29 lines (28 loc) · 887 Bytes
/
.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
set -g prefix C-a
bind-key a send-prefix
set -g history-limit 10000
unbind %
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
set -g status-bg white
set -g status-fg black
set -g status-left ""
set -g status-right "#h - %H:%M"
set -g status-interval 1
set -s escape-time 0
set -g base-index 1
setw -g mode-keys vi
setw -g aggressive-resize on
set-option -sg escape-time 0
set-option -g renumber-windows on
set-window-option -g window-status-current-bg white
set-window-option -g window-status-current-fg black
set-option -g message-bg black
set-option -g message-fg brightred
new-session
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'