-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.tmux.conf
59 lines (43 loc) · 1.49 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
# ~/.tmux.conf
#
# https://github.com/agkozak/dotfiles
setw -g mode-keys vi
set-option -g default-terminal "screen-256color"
# Zenburn theme {{{1
# https://github.com/thiderman/conf-tmux/blob/7f3f2d94701266e1feaa5a54961a5473a9c609a7/colors/zenburn.conf
# The modes {{{2
setw -g clock-mode-colour colour117
setw -g mode-style fg=colour117,bg=colour238,bold
# }}}2
# The panes {{{2
set -g pane-border-style fg=colour237,bg=colour237
set -g pane-active-border-style fg=colour235,bg=colour235
# }}}2
# The statusbar {{{2
set -g status-style fg=colour248,bg=colour235,dim
set -g status-left-length 11
set -g status-left '#[fg=colour187,bold]#H'
set -g status-right '#[fg=colour187,bold]%H:%M'
setw -g window-status-style fg=colour223,bg=colour237,bold
setw -g window-status-current-format '#I:#W#F'
# }}}2
# The messages {{{2
set -g message-style fg=colour117,bg=colour235,bold
# }}}2
# }}}1
# Reassign prefix key to Ctrl-Q (flow control must be off)
unbind C-b
set -g prefix C-q
bind C-q send-prefix
# Speed up escape
set -sg escape-time 20
# Allow changes to window titles
set -g allow-rename on
# set -g @plugin 'tmux-plugins/tpm'
# set -g @plugin 'tmux-plugins/tmux-sensible'
# set -g @plugin 'tmux-plugins/tmux-resurrect'
# set -g @plugin 'tmux-plugins/tmux-pain-control'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
# run '~/.tmux/plugins/tpm/tpm'
if-shell "[ -f ~/.tmux.conf.local ]" "source-file ~/.tmux.conf.local"
# vim: fdm=marker:ts=2:sts=2:sw=2:et