Compare commits
No commits in common. "2022" and "2020-refactor" have entirely different histories.
2022
...
2020-refac
29
.tmux.conf
29
.tmux.conf
|
@ -94,10 +94,7 @@ bind '"' choose-window
|
|||
bind r source-file ~/.tmux.conf
|
||||
|
||||
# Set TERM to 256 colors
|
||||
set -g default-terminal "tmux-256color"
|
||||
|
||||
# 24 bit colors
|
||||
set -ga terminal-overrides ",tmux-256color:Tc"
|
||||
set -g default-terminal "screen-256color"
|
||||
|
||||
# Start window numbering at 1
|
||||
set -g base-index 1
|
||||
|
@ -117,22 +114,27 @@ set -g status-right "#(date) #H"
|
|||
#### COLOUR (Solarized 256)
|
||||
|
||||
# default statusbar colors
|
||||
set-option -g status-style fg=colour136,bg=colour235 #yellow and base02
|
||||
set-option -g status-bg colour235 #base02
|
||||
set-option -g status-fg colour136 #yellow
|
||||
set-option -g status-attr default
|
||||
|
||||
# default window title colors
|
||||
set-window-option -g window-status-style fg=colour244,bg=default #base0 and default
|
||||
#set-window-option -g window-status-style dim
|
||||
set-window-option -g window-status-fg colour244 #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-style fg=colour166,bg=default #orange and default
|
||||
#set-window-option -g window-status-current-style bright
|
||||
set-window-option -g window-status-current-fg colour166 #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-style fg=colour235 #base02
|
||||
set-option -g pane-active-border-style fg=colour240 #base01
|
||||
set-option -g pane-border-fg colour235 #base02
|
||||
set-option -g pane-active-border-fg colour240 #base01
|
||||
|
||||
# message text
|
||||
set-option -g message-style fg=colour166,bg=colour235 #orange and base02
|
||||
set-option -g message-bg colour235 #base02
|
||||
set-option -g message-fg colour166 #orange
|
||||
|
||||
# pane number display
|
||||
set-option -g display-panes-active-colour colour33 #blue
|
||||
|
@ -140,6 +142,3 @@ set-option -g display-panes-colour colour166 #orange
|
|||
|
||||
# clock
|
||||
set-window-option -g clock-mode-colour colour64 #green
|
||||
|
||||
# bell
|
||||
set-window-option -g window-status-bell-style fg=colour235,bg=colour160 #base02, red
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
This repo contains my personal dotfiles. Feel free to reuse them.
|
Loading…
Reference in New Issue