-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
41 lines (36 loc) · 1.86 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
set -g base-index 1
set -g pane-base-index 1
set -g status on
#set -g status-utf8 on
set -g status-left-length 20
set -g status-right-length 150
set -g status-fg colour231
set -g status-bg colour238
#set -g status-left '#[fg=colour16,bg=colour254,bold] ❖ #S #[fg=colour254,bg=colour238,nobold]#[fg=colour15,bg=colour238,bold] '
#set -g status-left '#[fg=colour16,bg=colour254,nobold] ❖ #[fg=colour16,bg=colour254,bold]#S #[fg=colour254,bg=colour238,nobold]#[fg=colour15,bg=colour238,bold] '
#set -g status-left '#[fg=colour16,bg=colour254,nobold] #[fg=colour16,bg=colour254,bold]#S #[fg=colour254,bg=colour238,nobold]#[fg=colour15,bg=colour238,bold] '
set -g status-left '#[fg=colour16,bg=colour254,nobold] #[fg=colour16,bg=colour254,bold]#S #[fg=colour254,bg=colour238,nobold]#[fg=colour15,bg=colour238,bold] '
set -g status-right '#[fg=colour254,bg=colour238,nobold]#[fg=colour16,bg=colour254,bold] #h '
set -g window-status-format "#[fg=colour244,bg=colour238]#{?window_zoomed_flag,[,}#I#{?window_zoomed_flag,],} #[fg=colour240] #[default]#W "
set -g window-status-current-format "#[fg=colour238,bg=colour31]#[fg=colour117,bg=colour31] #{?window_zoomed_flag,[,}#I#{?window_zoomed_flag,],""} #[fg=colour231,bold]#W #[fg=colour31,bg=colour238,nobold]"
# arrow keys
bind -n S-Left select-pane -L
bind -n S-Right select-pane -R
bind -n S-Up select-pane -U
bind -n S-Down select-pane -D
# vim: ft=tmux
set -g allow-passthrough on
set -ga update-environment TERM
set -ga update-environment TERM_PROGRAM
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
unbind %
bind | split-window -h
bind - split-window -v
set-window-option -g xterm-keys on # to make ctrl-arrow, etc. work
set -s escape-time 0
set -g clock-mode-colour colour229
set-option -g default-terminal screen-256color
set-option -ga terminal-overrides ",screen-256color:Tc"
set -g focus-events on