-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
60 lines (49 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
# Status panel
#set -g status-bg #2e3440
#set -g status-fg red
set -g status-position top
#setw -g window-status-current-attr bright
#setw -g window-status-current-attr underscore
set -g set-titles on
set -g set-titles-string "tmux.#I.#W"
set -g base-index 1
set -g history-limit 20000
set -g bell-action any
setw -g monitor-activity on
set -g visual-activity on
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
set -g display-time 2000
#set -g mouse on
# Set the default input delay to improve Vim performance
set -sg escape-time 1
# tell tmux to use 256 colour terminal
set -g default-terminal "screen-256color"
# KEYS
set -g mode-keys vi
set -g status-keys vi
# Reload .tmux.conf with "r"
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# Select panes with vi-style movements
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# command/message line colors
#set -g message-fg white
#set -g message-bg black
#set -g message-attr bright
# Tmux Resurrect
set -g @plugin 'plugins/tpm'
set -g @plugin 'plugins/tmux-sensible'
set -g @plugin 'plugins/tmux-resurrect'
set -g @plugin 'plugins/tmux-continuum'
set -g @continuum-restore 'on'
set -g @resurrect-processes 'ssh screen'
## Tmux Nord theme
set -g @plugin "arcticicestudio/nord-tmux"
run-shell ~/.tmux/plugins/nord-tmux/nord.tmux
#set -g @nord_tmux_no_patched_font "1"
set -g @plugin "tmux-plugins/tmux-logging"
run-shell ~/.tmux/plugins/tmux-resurrect/resurrect.tmux
run '~/.tmux/plugins/tpm/tpm'
# http://homeonrails.com/2015/07/tmux-slash-avtomatichieskoie-vosstanovlieniie-siessii/