-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
25 lines (21 loc) · 962 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
set-option -g prefix M-b
set-option -sg escape-time 10
set -g default-terminal "screen-256color"
set -g status-bg default
setw -g pane-active-border-style ''
set -g clock-mode-colour "#81a2be"
set -g clock-mode-style 24
set -g status-right-length 100
set -g status-right '#{prefix_highlight} #[fg=#f99157,bg=#2d2d2d] %H:%M |#[fg=#6699cc] %y.%m.%d '
set-window-option -g window-status-format '#[fg=#6699cc,bg=colour235] #I #[fg=#999999,bg=#2d2d2d] #W #[default]'
set-window-option -g window-status-current-format '#[fg=#f99157,bg=#2d2d2d] #I #[fg=#cccccc,bg=#393939] #W #[default]'
set-option -g history-limit 10000000
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Vim bindings for scroll mode
set-window-option -g mode-keys vi
bind-key -T copy-mode-vi v send -X begin-selection
bind-key -T copy-mode-vi V send -X select-line
bind-key -T copy-mode-vi y send -X copy-pipe-and-cancel 'xclip -in -selection clipboard'