devenv/base/tmux/tmux.conf
2025-08-14 12:56:20 +10:00

61 lines
1.5 KiB
Bash

# vim:set ft=tmux:
# --> Catppuccin (Mocha)
set -ogq @thm_bg "#1e1e2e"
set -ogq @thm_fg "#cdd6f4"
# Colors
set -ogq @thm_rosewater "#f5e0dc"
set -ogq @thm_flamingo "#f2cdcd"
set -ogq @thm_pink "#f5c2e7"
set -ogq @thm_mauve "#cba6f7"
set -ogq @thm_red "#f38ba8"
set -ogq @thm_maroon "#eba0ac"
set -ogq @thm_peach "#fab387"
set -ogq @thm_yellow "#f9e2af"
set -ogq @thm_green "#a6e3a1"
set -ogq @thm_teal "#94e2d5"
set -ogq @thm_sky "#89dceb"
set -ogq @thm_sapphire "#74c7ec"
set -ogq @thm_blue "#89b4fa"
set -ogq @thm_lavender "#b4befe"
# Surfaces and overlays
set -ogq @thm_subtext_1 "#a6adc8"
set -ogq @thm_subtext_0 "#bac2de"
set -ogq @thm_overlay_2 "#9399b2"
set -ogq @thm_overlay_1 "#7f849c"
set -ogq @thm_overlay_0 "#6c7086"
set -ogq @thm_surface_2 "#585b70"
set -ogq @thm_surface_1 "#45475a"
set -ogq @thm_surface_0 "#313244"
set -ogq @thm_mantle "#181825"
set -ogq @thm_crust "#11111b"
# Enable mouse mode
set -g mouse on
# Set status bar at bottom (default)
set -g status-position bottom
# Center window list
set -g status-justify centre
# Style the status bar with your theme
set -g status-bg '#1e1e2e'
set -g status-fg '#cdd6f4'
# Active window style
set-window-option -g window-status-current-style "bg=#313244,fg=#cba6f7,bold"
set-window-option -g window-status-current-format " #I:#W "
# Inactive windows style
set-window-option -g window-status-style "bg=#1e1e2e,fg=#7f849c"
set-window-option -g window-status-format " #I:#W "
# Left/right status sections (can be empty or decorated)
set -g status-left ""
set -g status-right ""
set -g xterm-keys on