mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 21:57:30 -07:00
Update tmux colors away from the orange. They're still GROSS!
This commit is contained in:
parent
05dafa0296
commit
53959498b6
@ -24,6 +24,9 @@ tmux source ~/.tmux.conf
|
||||
### TPM
|
||||
Tmux Package Manager is de facto package manager for tmux.
|
||||
|
||||
## General Notes
|
||||
- When updating `tmux.conf`, styling stays after the directives that set them are removed. This means you might have to `tmux kill-server` in addition to `tmux source ~/.tmux.conf`.
|
||||
|
||||
## Shortcut Reference
|
||||
`<PREFIX>` key combo is `C-a` by default (Ctrl + a), changed from standard `C-b`.
|
||||
```
|
||||
|
@ -7,22 +7,22 @@
|
||||
# Window
|
||||
set -g set-titles on
|
||||
set -g set-titles-string '#W - Tmux'
|
||||
set -g base-index 1
|
||||
set -g window-status-format "#[fg=colour239,bg=colour222] #I:#W "
|
||||
set -g window-status-style fg=colour239,bg=colour208
|
||||
set-option -g base-index 1
|
||||
set-option -g window-status-current-style "bg=#1b1f32,fg=#67c9e4,bold"
|
||||
set-option -g window-status-style "bg=#1b1f32,fg=#9094a7"
|
||||
|
||||
# Pane
|
||||
set -g pane-base-index 1
|
||||
set -g pane-border-style "fg=colour239,bg=default"
|
||||
set -g pane-active-border-style "fg=colour215,bg=default"
|
||||
set -g pane-border-style "bg=#1b1f32,fg=#51587b"
|
||||
set -g pane-active-border-style "bg=#1b1f32,fg=#67c9e4"
|
||||
|
||||
# Status Bar
|
||||
set-option -g status-style "bg=#7289fd"
|
||||
set -g status-position top
|
||||
set -g status-bg colour215
|
||||
set -g status-fg colour239
|
||||
set -g status-left-length 40
|
||||
set -g status-right-length 100
|
||||
set -g status-left '#[bg=colour236,fg=gray] [#S] '
|
||||
set -g status-left "#[fg=#252a41]#S #[bg=#7289fd]"
|
||||
set -g status-right "#[fg=#252a41]#(date +'%H:%M') #[bg=#7289fd]"
|
||||
|
||||
### Functionality
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user