-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
54 lines (43 loc) · 1.9 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
# more familiar keycombination from screen
unbind C-b
set -g prefix C-a
bind a send-prefix
# zero is at the other end of keyboard, ew
set -g base-index 1
# manual session names
set-option -g allow-rename off
# possible screen resize fix
setw -g aggressive-resize on
# repeated space/backspace toggles windows forward/backwards
bind -r Space next-window
bind -r C-Space next-window
set-window-option -g xterm-keys on
set -g mouse on
#colors
set -g default-terminal "tmux-256color"
# more history
set-option -g history-limit 256000
# disable bell
set -g visual-bell off
# Shell
#set-option -g default-shell ${SHELL}
# This tmux statusbar config was created by tmuxline.vim
# on Wed, 12 Jun 2019
set -g status-justify "left"
set -g status "on"
set -g status-left-style "none"
set -g message-command-style "fg=colour247,bg=colour236"
set -g status-right-style "none"
setw -g pane-active-border-style "bg=default fg=colour236" # manual tweak!
set -g status-style "none,bg=colour233"
set -g message-style "fg=colour247,bg=colour236"
set -g pane-border-style "fg=colour236"
set -g status-right-length "100"
set -g status-left-length "100"
setw -g window-status-activity-style "none"
setw -g window-status-separator ""
setw -g window-status-style "none,fg=colour231,bg=colour233"
set -g status-left "#[fg=colour22,bg=colour148] #S #[fg=colour148,bg=colour233,nobold,nounderscore,noitalics]"
set -g status-right "#[fg=colour236,bg=colour233,nobold,nounderscore,noitalics]#[fg=colour247,bg=colour236] %Y-%m-%d %H:%M #[fg=colour148,bg=colour236,nobold,nounderscore,noitalics]#[fg=colour22,bg=colour148] #h "
setw -g window-status-format "#[fg=colour231,bg=colour233] #I #[fg=colour231,bg=colour233] #W "
setw -g window-status-current-format "#[fg=colour233,bg=colour236,nobold,nounderscore,noitalics]#[fg=colour247,bg=colour236] #I #[fg=colour247,bg=colour236] #W #[fg=colour236,bg=colour233,nobold,nounderscore,noitalics]"