fix things

This commit is contained in:
Preston Baxter 2022-10-08 11:54:52 -05:00
parent 562f9c128e
commit 155f13f8ea
1 changed files with 8 additions and 7 deletions

View File

@ -17,8 +17,9 @@ set -s escape-time 10 # faster command sequences
set -sg repeat-time 600 # increase repeat timeout
set -s focus-events on
set -g prefix2 C-a # GNU-Screen compatible prefix
bind C-a send-prefix -2
unbind C-b
set -g prefix C-a
bind-key C-a send-prefix
set -q -g status-utf8 on # expect UTF-8 (tmux < 2.2)
setw -q -g utf8 on
@ -69,13 +70,13 @@ bind BTab switch-client -l # move to last session
# split current window horizontally
bind - split-window -v
# split current window vertically
bind _ split-window -h
bind \\ split-window -h
# pane navigation
bind -r h select-pane -L # move left
bind -r j select-pane -D # move down
bind -r k select-pane -U # move up
bind -r l select-pane -R # move right
bind -n M-h select-pane -L # move left
bind -n M-j select-pane -D # move down
bind -n M-k select-pane -U # move up
bind -n M-l select-pane -R # move right
bind > swap-pane -D # swap current pane with the next one
bind < swap-pane -U # swap current pane with the previous one