-
Notifications
You must be signed in to change notification settings - Fork 0
tmux
Void edited this page Aug 29, 2023
·
2 revisions
#set-option -g status-style "bg=black,fg=gold"
# Set status bar background and foreground color.
set -g status-style fg=colour136,bg="#002b36"
set -g default-terminal "xterm"
# change binding to C-a
set-option -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
# Set left side status bar length and style
set -g status-left-length 60
set -g status-left-style default
# Set right side status bar length and style
set -g status-right-length 140
set -g status-right-style default
# Set the inactive window color and style
set -g window-status-style fg=colour244,bg=default
set -g window-status-format ' #I #W '
# Set the active window color and style
set -g window-status-current-style fg=black,bg=colour136
set -g window-status-current-format ' #I #W '
# split screen
bind C-l send-keys 'C-l'