Skip to content

Instantly share code, notes, and snippets.

@mijndert
Last active September 6, 2022 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mijndert/573468095d11e19b495818db498d3f5f to your computer and use it in GitHub Desktop.
Save mijndert/573468095d11e19b495818db498d3f5f to your computer and use it in GitHub Desktop.
Dracula colors for Tmux statusbar
# Refresh statusbar every second
set-option -g status-interval 1
# status bar (dracula)
set-option -g message-style "bg=#44475a,fg=#f8f8f2"
set-option -g status-style "bg=#44475a,fg=#f8f8f2"
set-option -g status-left "#[bg=#50fa7b,fg=#282a36]#{?client_prefix,#[bg=#f1fa8c],} #S "
set-window-option -g window-status-format "#[fg=#f8f8f2]#[bg=#44475a] #I #W "
set-window-option -g window-status-current-format "#[fg=#f8f8f2,bg=#6272a4] #I #W#{window_flags} "
set -g status-right "#[fg=#282a36,bg=#50fa7b] #(cd #{pane_current_path}; git rev-parse --abbrev-ref HEAD) "
# borders
set-option -g pane-active-border-style "fg=#6272a4"
set-option -g pane-border-style "fg=#44475a"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment