dotfiles/.tmux.conf

24 lines
526 B
Plaintext
Raw Permalink Normal View History

# terminal
2021-11-12 01:52:29 +08:00
set -g default-terminal "screen-256color"
set -ga terminal-overrides ",alacritty:Tc"
set -ga terminal-overrides ",xterm-256color:Tc"
2023-04-10 07:56:12 +08:00
set -sg escape-time 10
# 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'
2022-06-10 00:35:00 +08:00
unbind C-b
set-option -g prefix C-a
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
2022-06-10 00:35:00 +08:00
#bind-key b send-prefix
bind-key C-a last-window