Skip to content

Commit

Permalink
Update tmux theme
Browse files Browse the repository at this point in the history
  • Loading branch information
rumblesan committed Jan 14, 2018
1 parent 30085c9 commit 31cb0a2
Showing 1 changed file with 57 additions and 38 deletions.
95 changes: 57 additions & 38 deletions tmux.conf.dotfile
Expand Up @@ -62,43 +62,62 @@ bind e setw synchronize-panes

#### COLOUR

set -g default-terminal "screen-256color"
# Status update interval
set -g status-interval 1

# default statusbar colors
set-option -g status-bg black #base02
set-option -g status-fg yellow #yellow
set-option -g status-attr default

# default window title colors
set-window-option -g window-status-fg brightblue #base0
set-window-option -g window-status-bg default
#set-window-option -g window-status-attr dim

# active window title colors
set-window-option -g window-status-current-fg brightred #orange
set-window-option -g window-status-current-bg default
#set-window-option -g window-status-current-attr bright

# pane border
set-option -g pane-border-fg black #base02
set-option -g pane-active-border-fg brightgreen #base01

# message text
set-option -g message-bg black #base02
set-option -g message-fg brightred #orange

# pane number display
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange

# clock
set-window-option -g clock-mode-colour green #green

# bell
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red

set -g status-left '#[fg=black,bg=green,bold] #S #[fg=green,bg=brightgreen,nobold]#[fg=black,bold] #(whoami) #[fg=brightgreen,bg=black,nobold]'
set -g window-status-format "#[fg=black,bg=blue]#[fg=black,bg=blue] #I  #W #[fg=blue,bg=black]"
set -g window-status-current-format '#[fg=black,bg=cyan,nobold]#[fg=black,bg=cyan,bold] #I  #W #[fg=cyan,bg=black,nobold]'
set -g status-right "#[fg=blue,bg=black,bold]#[fg=black,bg=blue] #H "

set -g status-fg colour2
set -g status-bg colour8 # default solarized background

# Left side of status bar
set -g status-left-bg colour8
set -g status-left-fg colour2
set -g status-left-length 40
set -g status-left "#[fg=colour232,bg=green,bold] #S #[fg=green,bg=default,nobold]"

# Right side of status bar
set -g status-right-length 0
set -g status-right ""

# Window status
set -g window-status-bg colour39
set -g window-status-fg colour8
set -g window-status-current-bg colour39
set -g window-status-current-fg colour8
set -g window-status-format "#[fg=colour8,bg=blue]#[fg=black,bg=blue] #I  #W #[fg=blue,bg=colour8]"
set -g window-status-current-format '#[fg=colour8,bg=cyan,bold]#[fg=black,bg=cyan,bold] #I  #W #[fg=cyan,bg=colour8,nobold]'

# Window with activity status
set -g window-status-activity-bg colour75 # fg and bg are flipped here due to
set -g window-status-activity-fg colour8 # a bug in tmux

# Window separator
set -g window-status-separator ""

# Pane border
set -g pane-border-bg default
set -g pane-border-fg colour238

# Active pane border
set -g pane-active-border-bg default
set -g pane-active-border-fg colour39

# Pane number indicator
set -g display-panes-colour colour233
set -g display-panes-active-colour colour245

# Clock mode
set -g clock-mode-colour colour39
set -g clock-mode-style 24

# Message
set -g message-bg colour39
set -g message-fg black

# Command message
set -g message-command-bg colour233
set -g message-command-fg black

# Mode
set -g mode-bg colour39
set -g mode-fg colour232

0 comments on commit 31cb0a2

Please sign in to comment.