diff options
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/tmux.conf | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index e634a01..b77c33c 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -5,6 +5,12 @@ set -g status-bg red set -g status-fg black +set -g message-command-style bg=red,fg=black +set -g message-style bg=red,fg=black + +set -g mode-style bg=red,fg=black +set -g status-style bg=red,fg=black + # tpm plugin manager set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' @@ -29,10 +35,10 @@ set -g mouse on #bind l select-pane -R ## Start windows and panes at 1, not 0 -#set -g base-index 1 -#set -g pane-base-index 1 -#set-window-option -g pane-base-index 1 -#set-option -g renumber-windows on +set -g base-index 1 +set -g pane-base-index 1 +set-window-option -g pane-base-index 1 +set-option -g renumber-windows on ## Use Alt-arrow keys without prefix key to switch panes #bind -n M-Left select-pane -L @@ -41,8 +47,8 @@ set -g mouse on #bind -n M-Down select-pane -D ## Shift arrow to switch windows -#bind -n S-Left previous-window -#bind -n S-Right next-window +bind -n S-Left previous-window +bind -n S-Right next-window ## Shift Alt vim keys to switch windows #bind -n M-H previous-window |