21 lines
639 B
Bash
21 lines
639 B
Bash
set-option -sa terminal-features ',alacritty:RGB'
|
|
set-option -g default-terminal "tmux-256color"
|
|
set-option -ga terminal-features ",alacritty:usstyle"
|
|
set-option -sa terminal-overrides ",xterm*:Tc"
|
|
|
|
# Windows and panes start at 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
|
|
|
|
bind s split-window -c "#{pane_current_path}"
|
|
bind v split-window -h -c "#{pane_current_path}"
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'catppuccin/tmux'
|
|
|
|
run '~/.config/tmux/plugins/tpm/tpm'
|
|
|