24 lines
508 B
Plaintext
24 lines
508 B
Plaintext
new-session
|
|
# Start windows and panes at 1, not 0
|
|
set -g base-index 1
|
|
set -g pane-base-index 1
|
|
|
|
set-option -g status-position top
|
|
|
|
set-option -g repeat-time 0
|
|
|
|
# Removes ESC delay
|
|
set -sg escape-time 0
|
|
|
|
# List of plugins
|
|
set -g @tpm_plugins ' \
|
|
arcticicestudio/nord-tmux \
|
|
tmux-plugins/tpm \
|
|
tmux-plugins/tmux-sensible \
|
|
tmux-plugins/tmux-prefix-highlight \
|
|
'
|
|
|
|
# Initialize TMUX plugin manager
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
|