Skip to content

Latest commit

 

History

History
81 lines (51 loc) · 2.22 KB

README.md

File metadata and controls

81 lines (51 loc) · 2.22 KB

Tmux configurations 💻

I couldn't decide what a good Tmux Spaceduck statusline would look like, so I customized a few options using this tmux plugin.

If you're not using a patched font you can use the nice basic statusline that I have listed here.

Basic tmux statusline

Screenshot of tmux statusline using the dark config

Put this bad boy in your tmux.conf or you can download the basic.conf and source it by using:

  source-file basic.conf
  # Basic color support setting
  set-option -g default-terminal "screen-256color"

  # Default bar color
  set-option -g status-style bg='#1b1c36',fg='#ecf0c1'

  # Active Pane
  set -g pane-active-border-style "fg=#5ccc96"

  # Inactive Pane
  set -g pane-border-style "fg=#686f9a"

  # Active window
  set-option -g window-status-current-style bg='#686f9a',fg='#ffffff'

  # Message
  set-option -g message-style bg='#686f9a',fg='#ecf0c1'
  set-option -g message-command-style bg='#686f9a',fg='#ecf0c1'

  # When Commands are run
  set -g message-style "fg=#0f111b,bg=#686f9a"

Screenshots of the other configs

Default

Screenshot of tmux statusline using the dark config

To use this statusline just download the file and source it with this command:

  source-file status-line-default.conf

Dark

Screenshot of tmux statusline using the dark config

To use this statusline just download the file and source it with this command:

  source-file status-line-dark.conf

Dark Purple

Screenshot of tmux statusline using the dark purple config

To use this statusline just download the file and source it with this command:

  source-file status-line-darkPurple.conf

Purple

Screenshot of tmux statusline using the purple config

To use this statusline just download the file and source it with this command:

  source-file status-line-purple.conf