Tmux theme tweaks
Looks more like @vilhalmer's config: https://twitter.com/vilhalmer/status/311529816304267264
This commit is contained in:
parent
402d298f52
commit
4129bc6022
1 changed files with 16 additions and 5 deletions
21
tmux.conf
21
tmux.conf
|
@ -22,20 +22,31 @@ set -g mode-keys vi
|
|||
set -g repeat-time 0
|
||||
|
||||
# No left status; right status bar is session name
|
||||
set -g status-bg green
|
||||
set -g status-left ""
|
||||
set -g status-left-bg black
|
||||
set -g status-left-fg brightblue
|
||||
set -g status-left-attr none
|
||||
|
||||
set -g status-right "| #S "
|
||||
set -g status-right-bg black
|
||||
set -g status-right-fg brightblue
|
||||
set -g status-right-attr none
|
||||
|
||||
# Start window and pane indexing from 1 instead of 0
|
||||
set-option -g base-index 1
|
||||
set-option -g pane-base-index 1
|
||||
|
||||
# Tabs like this: " <index>:<window_name>(<pane_number>) "
|
||||
setw -g window-status-format " #I:#W(#P) "
|
||||
setw -g window-status-current-bg yellow
|
||||
setw -g window-status-current-format " #I:#W(#P) "
|
||||
# Tabs like this: "(<index>:<window_name>)"
|
||||
setw -g window-status-bg black
|
||||
setw -g window-status-fg brightgreen
|
||||
setw -g window-status-format "(#I:#W)"
|
||||
setw -g window-status-current-bg black
|
||||
setw -g window-status-current-fg yellow
|
||||
setw -g window-status-current-format "(#I:#W)"
|
||||
|
||||
setw -g window-status-bell-fg red
|
||||
setw -g window-status-content-fg brightred
|
||||
setw -g window-status-activity-fg brightred
|
||||
|
||||
setw -g alternate-screen on
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue