style(tmux): disable transparent on inactive pane
This commit is contained in:
parent
f1251f6398
commit
062a2f7935
@ -80,7 +80,7 @@ bind -n M-0 new-window -n 10 -S -c "#{pane_current_path}"
|
|||||||
bind -n M-Enter split-window -h -c "#{pane_current_path}"
|
bind -n M-Enter split-window -h -c "#{pane_current_path}"
|
||||||
bind -n M-t split-window -v -l 20% -c "#{pane_current_path}"
|
bind -n M-t split-window -v -l 20% -c "#{pane_current_path}"
|
||||||
bind | split-window -h -c "#{pane_current_path}"
|
bind | split-window -h -c "#{pane_current_path}"
|
||||||
bind \\ split-window -v -c "#{pane_current_path}"
|
bind - split-window -v -c "#{pane_current_path}"
|
||||||
|
|
||||||
|
|
||||||
# Resizing
|
# Resizing
|
||||||
|
|||||||
@ -1,10 +1,12 @@
|
|||||||
# vim: ft=tmux
|
# vim: ft=tmux
|
||||||
|
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
set -g bell-action none
|
set -g bell-action none
|
||||||
set -g message-style 'fg=black bg=white bold'
|
set -g message-style 'fg=black bg=white bold'
|
||||||
set -ga update-environment 'DISPLAY' # Maybe fix DISPLAY?
|
set -ga update-environment 'DISPLAY' # Maybe fix DISPLAY?
|
||||||
|
|
||||||
|
|
||||||
# status style
|
# status style
|
||||||
set -g status-style 'bg=default,fg=white'
|
set -g status-style 'bg=default,fg=white'
|
||||||
set -g status-justify absolute-centre
|
set -g status-justify absolute-centre
|
||||||
@ -19,6 +21,7 @@ set -g window-status-format '#W#{?window_flags,#{window_flags}, }'
|
|||||||
set -g window-status-current-format '#W#{?window_flags,#{window_flags}, }'
|
set -g window-status-current-format '#W#{?window_flags,#{window_flags}, }'
|
||||||
setw -g monitor-activity on
|
setw -g monitor-activity on
|
||||||
|
|
||||||
|
|
||||||
# window title style
|
# window title style
|
||||||
set -g set-titles on
|
set -g set-titles on
|
||||||
set -g set-titles-string '#S:#I.#P #W'
|
set -g set-titles-string '#S:#I.#P #W'
|
||||||
@ -26,4 +29,13 @@ set -g set-titles-string '#S:#I.#P #W'
|
|||||||
|
|
||||||
# clock style
|
# clock style
|
||||||
setw -g clock-mode-colour white
|
setw -g clock-mode-colour white
|
||||||
setw -g clock-mode-style 24
|
setw -g clock-mode-style 24
|
||||||
|
|
||||||
|
|
||||||
|
# borders
|
||||||
|
set -g pane-border-indicators both
|
||||||
|
|
||||||
|
|
||||||
|
# inactive panes style
|
||||||
|
set -g window-style 'fg=terminal,bg=colour235'
|
||||||
|
set -g window-active-style 'fg=default,bg=terminal'
|
||||||
Loading…
x
Reference in New Issue
Block a user