-
Notifications
You must be signed in to change notification settings - Fork 2
/
.tmux.conf
85 lines (67 loc) · 2.59 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
###############################################################################
# Plugins
###############################################################################
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'nhdaly/tmux-better-mouse-mode'
###############################################################################
# Settings
###############################################################################
set -g prefix2 C-a
set -g default-terminal "screen-256color"
set -sg repeat-time 600
set -g base-index 1
set -g pane-base-index 1
set -g automatic-rename on
set -g renumber-windows on
set -g set-titles on
set -g monitor-activity on
set -g visual-activity off
set -sg escape-time 0
set -g status-interval 1
set -g mouse on
###############################################################################
# Keybinds
###############################################################################
# Second Prefix
bind C-a send-prefix -2
# CTRL+Arrows to create panes
bind -n C-Left split-window -h
bind -n C-Right split-window -h
bind -n C-Up split-window -v
bind -n C-Down split-window -v
# Alt+Arrows to switch panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# fix Scrollwheel in mintty
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
###############################################################################
# Theme
###############################################################################
# status bar
set -g status-style bg=colour234,fg=default,default
# status bar content
set -g status-left '#[fg=red]#S#[fg=yellow]@#[fg=blue]#H '
set -g status-right "#[fg=blue]#H #[fg=yellow]%H:%M:%S"
# window status
set -g window-status-format " #I:#W#F "
set -g window-status-current-format " #I:#W#F "
set -g window-status-separator ""
# active windows
set -g window-status-current-style bg=colour238,fg=colour255,none
# inactive windows
set -g window-status-style bg=colour234,fg=colour242,none
# windows with activity
set -g window-status-activity-style bg=colour234,fg=green,none
set -g pane-border-style bg=default,fg=default
set -g pane-active-border-style bg=default,fg=yellow
set -g display-panes-colour default
set -g display-panes-active-colour default
set -g message-style bg=default,fg=default
set -g message-command-style bg=default,fg=default
###############################################################################
# Source Plugins
###############################################################################
run -b '~/.tmux/plugins/tpm/tpm'