Files
claudaris/files/tmux.conf
T
2026-07-08 18:23:00 -07:00

74 lines
1.5 KiB
Bash

##### Terminal #####
set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*:Tc"
##### General #####
set -g mouse on
set -g history-limit 100000
set -g escape-time 0
set -g focus-events on
# Always use bash interactively
set-option -g default-shell /bin/bash
set-option -g default-command "bash -i"
##### Status Bar #####
set -g status-position bottom
set -g status-interval 5
set -g status-justify left
# Deep indigo background
set -g status-style "bg=#24283b,fg=#c0caf5"
# Remove default spacing
set -g status-left-length 40
set -g status-right-length 100
# Left
set -g status-left "#[fg=#bb9af7,bold] #S #[fg=#565f89]|"
# Right
set -g status-right "#[fg=#7aa2f7]%H:%M #[fg=#565f89]| #[fg=#9ece6a]%Y-%m-%d "
##### Windows #####
set -g window-status-format " #I:#W "
set -g window-status-style "fg=#565f89,bg=#24283b"
set -g window-status-current-format " #I:#W "
set -g window-status-current-style "fg=#1a1b26,bg=#bb9af7,bold"
set -g window-status-activity-style "fg=#e0af68,bold"
##### Pane Borders #####
set -g pane-border-style "fg=#414868"
set -g pane-active-border-style "fg=#bb9af7"
##### Messages #####
set -g message-style "fg=#1a1b26,bg=#bb9af7"
set -g message-command-style "fg=#1a1b26,bg=#7aa2f7"
##### Copy Mode #####
set -g mode-style "fg=#1a1b26,bg=#7dcfff"
##### Clock #####
set -g clock-mode-colour "#bb9af7"
##### Pane Numbers #####
set -g display-panes-active-colour "#bb9af7"
set -g display-panes-colour "#565f89"
##### Bell #####
set -g visual-bell off
set -g bell-action none