mydot/tmux/.config/tmux/tmux.conf
2023-07-11 10:41:59 +03:00

36 lines
935 B
Bash

DIR="$HOME/.config/tmux"
#-------------------------------------------------------#
# Key bind.
#-------------------------------------------------------#
# Reload tmux.
bind r source-file "$DIR/tmux.conf"
# Moving between panes with vim movement keys.
bind C-h select-pane -L
bind C-j select-pane -D
bind C-k select-pane -U
bind C-l select-pane -R
# Resize panes with vim movement keys.
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
#-------------------------------------------------------#
# View.
#-------------------------------------------------------#
# set -g window-style 'bg=cyan fg=default'
# set -g window-active-style 'bg=cyan fg=default'
set -g pane-border-style 'fg=blue'
set -g pane-active-border-style 'fg=blue'
set -g status-bg blue
# set -g status-fg white
# set -g status-right-style 'fg=blue'
# set -g status-right '#[fg=blue]%a%d-%m-%Y %H:%M:%S'