34 lines
913 B
Plaintext
34 lines
913 B
Plaintext
|
# Set true color
|
||
|
set-option -sa terminal-overrides ",xterm*Tc"
|
||
|
|
||
|
# remap prefix from 'C-b' to 'C-a'
|
||
|
unbind C-b
|
||
|
set-option -g prefix C-a
|
||
|
bind-key C-a send-prefix
|
||
|
|
||
|
# Shift Alt vim keys to switch windows
|
||
|
bind -n M-H previous-window
|
||
|
bind -n M-L next-window
|
||
|
|
||
|
set -g @plugin 'tmux-plugins/tpm'
|
||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||
|
set -g @plugin 'catppuccin/tmux'
|
||
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
||
|
|
||
|
run '~/.tmux/plugins/tpm/tpm'
|
||
|
|
||
|
# set vi-mode
|
||
|
set-window-option -g mode-keys vi
|
||
|
# keybindings
|
||
|
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
||
|
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
|
||
|
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
||
|
|
||
|
# split panes using v and f, and split panes in current directory
|
||
|
bind v split-window -h -c "#{pane_current_path}"
|
||
|
bind h split-window -v -c "#{pane_current_path}"
|
||
|
unbind '"'
|
||
|
unbind %
|
||
|
|