Skip to content

Instantly share code, notes, and snippets.

@yveszoundi
Created July 28, 2025 15:29
Show Gist options
  • Select an option

  • Save yveszoundi/a1014737b04514a14ddf8da369d67370 to your computer and use it in GitHub Desktop.

Select an option

Save yveszoundi/a1014737b04514a14ddf8da369d67370 to your computer and use it in GitHub Desktop.
Tmux macos config
unbind C-b
set-option -g prefix C-j
set -gw mode-keys emacs
set -gw status-key emacs
set -g mouse on
bind c new-window -c "#{pane_current_path}"
# default statusbar colors
set-option -g status-bg colour235 #base02
set-option -g status-fg colour136 #yellow
# pane number display
set-option -g display-panes-active-colour colour33 #blue
set-option -g display-panes-colour colour166 #orange
# clock
set-window-option -g clock-mode-colour colour64 #green
set -g status-justify centre
set -g status-fg "#fffffe"
set -g status-bg "#343843"
set-option -g status-left-length 40
set-option -g status-right-length 40
set-option -g status-interval 5
set -g window-status-separator ''
set -g status-right ""
# window status
set -g window-status-format "#[fg=colour10,bg=colour234] #I #[fg=colour231,bold]#W#F #[fg=colour31,bg=colour234,nobold]"
set -g window-status-current-format "#[fg=colour10,bg=colour31] #I #[fg=colour231,bold]#W #[fg=colour31,bg=colour234,nobold]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment