53 lines
1.2 KiB
Bash
53 lines
1.2 KiB
Bash
unbind C-b
|
|
set-option -g prefix C-f
|
|
bind r source-file ~/.tmux.conf
|
|
bind h select-pane -L
|
|
bind l select-pane -R
|
|
bind k select-pane -U
|
|
bind j select-pane -D
|
|
bind g copy-mode
|
|
|
|
setw -g mode-keys vi
|
|
# don't rename windows automatically
|
|
#set-option -g allow-rename off
|
|
|
|
|
|
# DESIGN TWEAKS
|
|
|
|
# don't do anything when a 'bell' rings
|
|
set -g visual-activity off
|
|
set -g visual-bell off
|
|
set -g visual-silence off
|
|
setw -g monitor-activity off
|
|
set -g bell-action none
|
|
|
|
# clock mode
|
|
setw -g clock-mode-colour colour1
|
|
|
|
# copy mode
|
|
setw -g mode-style 'fg=colour2 bg=colour18 bold'
|
|
|
|
# pane borders
|
|
set -g pane-border-style 'fg=colour2'
|
|
set -g pane-active-border-style 'fg=colour3'
|
|
|
|
# statusbar
|
|
set -g status-position bottom
|
|
set -g status-justify left
|
|
set -g status-style 'fg=colour2'
|
|
set -g status-left ''
|
|
set -g status-right '%Y-%m-%d %H:%M '
|
|
set -g status-right-length 50
|
|
set -g status-left-length 10
|
|
|
|
setw -g window-status-current-style 'fg=colour0 bg=colour2 bold'
|
|
setw -g window-status-current-format ' #I #W #F '
|
|
|
|
setw -g window-status-style 'fg=colour2 dim'
|
|
setw -g window-status-format ' #I #[fg=colour7]#W #[fg=colour2]#F '
|
|
|
|
setw -g window-status-bell-style 'fg=colour2 bg=colour1 bold'
|
|
|
|
# messages
|
|
set -g message-style 'fg=colour2 bg=colour0 bold'
|