diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-22 00:10:09 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-22 00:10:09 +0200 |
commit | c9971fb4fa963fe898aceaeb4f52e5a334331709 (patch) | |
tree | e236b5c1d9b4a29540745f21392fdd7396e21a2c | |
parent | b51f1ae28924a752258e7607fbc3210f9b18eaac (diff) |
Status bar color change, remove bold on current window
-rw-r--r-- | .config/tmux/tmux.conf | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 7f350fe..07ede9f 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -12,14 +12,14 @@ set -ga terminal-overrides ',*256col*:Tc' # Status line set -g status on -set-option -g status-style bg=#121212,fg=white +set-option -g status-style bg=#0D0D0D,fg=white set-option -g automatic-rename on set-option -g renumber-windows on set-option -g status-left "" -set -ga status-left '#[bg=black]#[fg=white] #{?window_zoomed_flag,, }' +set -ga status-left '#[bg=#0D0D0D]#[fg=white] #{?window_zoomed_flag,, }' set-option -g status-right "" set-option -g window-status-format " #{window_index}#(echo ':')#{window_name}#{window_flag} " -set-option -g window-status-current-format " #[bold,bg=#1c1c1c] #{window_index}#(echo ':')#{window_name}#{window_flag} " +set-option -g window-status-current-format " #[bg=#1c1c1c] #{window_index}#(echo ':')#{window_name}#{window_flag} " #set -g default-terminal screen-256color set -g status-keys vi @@ -29,7 +29,7 @@ setw -g mode-keys vi setw -g mouse off # split panes -bind s split-window -h +bind h split-window -h bind v split-window -v unbind '"' unbind % @@ -44,12 +44,6 @@ bind-key M-k resize-pane -U bind-key M-h resize-pane -L bind-key M-l resize-pane -R -# Vim style pane selection -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R - # Use Alt-vim keys without prefix key to switch panes bind -n M-h select-pane -L bind -n M-j select-pane -D |