18 lines
392 B
Bash
18 lines
392 B
Bash
unbind r
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
set -g prefix C-s
|
|
set -g default-terminal "screen-256color"
|
|
set-option -a terminal-overrides ",alacritty:RGB"
|
|
|
|
setw -g mode-keys vi
|
|
bind-key h select-pane -L
|
|
bind-key j select-pane -D
|
|
bind-key k select-pane -U
|
|
bind-key l select-pane -R
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|