dotfiles-hyperreal/.tmux.conf
2025-12-30 12:10:41 +01:00

51 lines
1.2 KiB
Bash

# term colors
set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# don't rename windows automatically
set-option -g allow-rename off
# clock mode
setw -g clock-mode-colour yellow
# start windows numbering at 1
set -g base-index 1
setw -g pane-base-index 1
# renumber windows when a window is closed
set -g renumber-windows on
# copy mode
setw -g mode-style 'fg=black bg=red bold'
# panes
set -g pane-border-style 'fg=red'
set -g pane-active-border-style 'fg=yellow'
# statusbar
set -g status-position bottom
set -g status-justify left
set -g status-style 'fg=white bg=colour236'
set -g status-left ' #(uname -sr) '
set -g status-left-length 100
set -g status-right ' %Y-%m-%d #(uptime) '
set -g status-right-length 100
setw -g window-status-current-style 'fg=black bg=white'
setw -g window-status-current-format ' #I #W #F '
setw -g window-status-style 'fg=white bg=black bold'
setw -g window-status-format ' #I #[fg=white]#W #[fg=yellow]#F '
setw -g window-status-bell-style 'fg=yellow bg=red bold'
# messages
set -g message-style 'fg=yellow bg=black bold'