diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-05-26 21:06:17 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-05-26 21:06:17 +0300 |
commit | c269e8047dd281d09533d1f676a4ac5c9715bc23 (patch) | |
tree | 62a5595260d05d01c89e87fa6d42f7185dd19786 /tmux | |
parent | 91631efe0b8bfc00f4022a33bd49420a9da789fc (diff) |
Configured tmux to use it more often easily.
Changes to be committed:
modified: tmux/tmux.conf
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 |