mirror of https://github.com/nirenjan/dotfiles.git
Adjust status bar colors in tmux
With Terminal.app, the background color was getting set to base02 instead of base03, therefore, I had to use base03 (brightblack) to distinguish the tmux status bar from the rest of the screen. It would be a problem with vim (not so much really, since I could figure out where the tmux status bar was based on the vim status line). However, since iTerm2 is a better terminal emulator, it correctly displays the background color as base03, so in order to distinguish the status bar, I changed the color to base02 (black) instead.vimbundler
parent
68a3f822a0
commit
b42371a079
|
@ -46,9 +46,9 @@ set-option -g set-titles-string "(#H) [#S:#I.#P] #W"
|
|||
|
||||
# Configure the tmux colours
|
||||
# Based on Solarized [altercation/solarized] on GitHub
|
||||
TMUX_STATUS_BG=brightblack
|
||||
TMUX_STATUS_BG=black
|
||||
TMUX_STATUS_FG=white
|
||||
TMUX_MESSAGE_BG=brightblack
|
||||
TMUX_MESSAGE_BG=black
|
||||
TMUX_MESSAGE_FG=brightred
|
||||
|
||||
# Status bar
|
||||
|
|
Loading…
Reference in New Issue