34 lines
825 B
Bash
34 lines
825 B
Bash
set-option -sa terminal-overrides ',xterm*:Tc'
|
|
set -s escape-time 0
|
|
|
|
unbind-key C-b
|
|
set-option -g prefix C-x
|
|
bind-key C-x send-prefix
|
|
|
|
set -g @plugin 'catppuccin/tmux'
|
|
set -g @catppuccin_user 'on'
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
|
set -g @plugin 'dreamsofcode-io/catppuccin-tmux'
|
|
run '~/.config/tmux/plugins/tpm/tpm'
|
|
|
|
set -g mouse 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
|
|
|
|
unbind '"'
|
|
unbind %
|
|
|
|
bind - split-window -v -c #{pane_current_path}'
|
|
bind _ split-window -h -c #{pane_current_path}'
|
|
|
|
bind -r ^ last-window
|
|
bind -r k select-pane -U
|
|
bind -r j select-pane -D
|
|
bind -r h select-pane -L
|
|
bind -r l select-pane -R
|