forked from simnalamburt/.dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
29 lines (26 loc) · 924 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
set -g base-index 1
set -g mode-keys vi
set -sg escape-time 0
# Fix Home/End key
# Reference: https://stackoverflow.com/a/55616731/13977061
bind-key -n Home send Escape "OH"
bind-key -n End send Escape "OF"
# My theme
set -g default-terminal 'screen-256color'
set -ga terminal-overrides ',*256col*:Tc'
set -g status-bg colour235
set -g status-fg colour245
set -g status-position top
set -g status-left '#[default] #(hostname) #[default]'
set -g window-status-format ' #I #W '
set -g window-status-current-format '#[fg=colour7] #I #W #[default]'
set -g status-right '#{prefix_highlight} %Y-%m-%d %H:%M #[default]'
set -g status-right '#{ip_address} | #H'
# TPM
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set -g @plugin 'simnalamburt/tmux-pane'
set -g @plugin 'anghootys/tmux-ip-address'
run '~/.tmux/plugins/tpm/tpm'