dotfiles/.tmux.conf

20 lines
382 B
Plaintext
Raw Normal View History

# terminal
2020-11-05 00:08:48 +08:00
set -g default-terminal "alacritty"
# vi mode
2020-11-05 00:08:48 +08:00
set-window-option -g mode-keys vi
2020-11-05 00:08:48 +08:00
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
2020-12-16 21:31:40 +08:00
bind-key a send-prefix
# vim binds for pane navigation
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
2020-12-16 21:31:40 +08:00
# last window similar to screen
bind-key C-a last-window