-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
41 lines (27 loc) · 983 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
30
31
32
33
34
35
36
37
38
39
40
41
set -g default-terminal "screen-256color"
set-option -sa terminal-overrides ',xterm-256color:RGB'
set -g base-index 1
set -g pane-base-index 1
set -g display-panes-time 2000
set -g default-shell $SHELL
set -g escape-time 0
set -g automatic-rename off
set -g history-limit 10000
setw -g xterm-keys
bind-key k copy-mode
set-window-option -g mode-keys vi
set -g mouse on
set -g focus-events on
## status bar
set -g status-position bottom
set -g status-left-length 100
set -g status-left "#[fg=orange,bg=black,bold] #S "
set -g status-right '#(date "+%d.%m.%Y %H:%M")'
set -g status-interval 2
set -g status-bg black
set -g status-fg white
setw -g window-status-format ' #I:#W#{?window_zoomed_flag, (Z),}#{?window_marked_flag, (M),} '
setw -g window-status-current-style 'bg=blue'
setw -g window-status-current-format ' #I:#W#{?window_zoomed_flag, (Z),}#{?window_marked_flag, (M),} '
## config reload
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."