23 lines
559 B
Bash
23 lines
559 B
Bash
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'egel/tmux-gruvbox'
|
|
set -g @tmux-gruvbox 'dark'
|
|
set -g @plugin 'omerxx/tmux-sessionx'
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
|
|
# set window count from 1
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
|
|
# remap prefix from 'C-b' to 'C-a'
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
|
|
# tmux sessionx - turn on tmuxinator mode
|
|
set -g @sessionx-tmuxinator-mode 'on'
|
|
set -g @sessionx-zoxide-mode 'on'
|