18 lines
571 B
Bash
18 lines
571 B
Bash
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
set-option -g allow-passthrough on
|
|
|
|
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
|
|
set-window-option -g mode-keys vi
|
|
bind-key -T copy-mode-vi v send -X begin-selection
|
|
bind-key -T copy-mode-vi V send -X select-line
|
|
set -s copy-command 'xclip -in -selection clipboard'
|
|
bind-key -T copy-mode-vi y send -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
|
|
set -g @resurrect-strategy-nvim 'session'
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|