48 lines
1.9 KiB
Plaintext
48 lines
1.9 KiB
Plaintext
set -g default-terminal "screen-256color"
|
|
set -g set-titles-string '#T'
|
|
set-option -g set-titles on
|
|
setw -g monitor-activity on
|
|
setw -g aggressive-resize on
|
|
setw -g automatic-rename on
|
|
|
|
unbind C-b
|
|
set -g prefix C-a
|
|
|
|
bind -n M-k run-shell 'tmux-vim-select-pane -U'
|
|
bind -n M-j run-shell 'tmux-vim-select-pane -D'
|
|
bind -n M-h run-shell 'tmux-vim-select-pane -L'
|
|
bind -n M-l run-shell 'tmux-vim-select-pane -R'
|
|
bind -n C-j new-window
|
|
bind -n C-h prev
|
|
bind -n C-l next
|
|
bind -n C-M-l swap-window -t +1
|
|
bind -n C-M-h swap-window -t -1
|
|
bind X kill-window
|
|
|
|
set -g status-bg "colour0"
|
|
set -g message-command-fg "colour0"
|
|
set -g status-justify "left"
|
|
set -g status-left-length "100"
|
|
set -g status "on"
|
|
set -g pane-active-border-fg "colour4"
|
|
set -g message-bg "colour12"
|
|
set -g status-right-length "100"
|
|
set -g status-right-attr "none"
|
|
set -g message-fg "colour0"
|
|
set -g message-command-bg "colour12"
|
|
set -g status-attr "none"
|
|
set -g status-utf8 "on"
|
|
set -g pane-border-fg "colour12"
|
|
set -g status-left-attr "none"
|
|
setw -g window-status-fg "colour12"
|
|
setw -g window-status-attr "none"
|
|
setw -g window-status-activity-bg "colour0"
|
|
setw -g window-status-activity-attr "none"
|
|
setw -g window-status-activity-fg "colour4"
|
|
setw -g window-status-separator ""
|
|
setw -g window-status-bg "colour0"
|
|
set -g status-left "#[fg=colour8,bg=colour4,bold] #S #[fg=colour4,bg=colour0,nobold,nounderscore,noitalics]"
|
|
set -g status-right "#[fg=colour12,bg=colour0,nobold,nounderscore,noitalics]#[fg=colour0,bg=colour12] %Y-%m-%d %H:%M #[fg=colour4,bg=colour12,nobold,nounderscore,noitalics]#[fg=colour8,bg=colour4] #h "
|
|
setw -g window-status-format "#[fg=colour12,bg=colour0] #I #[fg=colour12,bg=colour0] #W "
|
|
setw -g window-status-current-format "#[fg=colour0,bg=colour12,nobold,nounderscore,noitalics]#[fg=colour0,bg=colour12] #I #[fg=colour0,bg=colour12] #W #[fg=colour12,bg=colour0,nobold,nounderscore,noitalics]"
|