chore(tmux): status line configuration

This commit is contained in:
Oliver Davies 2022-12-08 10:12:06 +00:00
parent 755b3c88a4
commit f9b5aeb8f5

View file

@ -32,8 +32,16 @@
bind -n C-Down resize-pane -D 5
bind -n C-Up resize-pane -U 5
set-option -g status-left-length 50
set-option -g status-right ""
# Status line customisation
set-option -g status-left-length 100
set-option -g status-right-length 100
set-option -g status-left " #{session_name} "
set-option -g status-right "#{pane_title} "
set-option -g status-style "fg=#7C7D83 bg=#242631"
set-option -g window-status-format "#{window_index}:#{pane_current_command}#{window_flags} "
set-option -g window-status-current-format "#{window_index}:#{pane_current_command}#{window_flags} "
set-option -g window-status-current-style "fg=#E9E9EA"
set-option -g window-status-activity-style none
bind c new-window -c "#{pane_current_path}"