Skip to content

Commit

Permalink
Update tmux to update to vi pane switching
Browse files Browse the repository at this point in the history
  • Loading branch information
codyduong committed Nov 30, 2023
1 parent 321734c commit 937b1a4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion linux/home/.tmux.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# TODO: double check where zsh is installed
# set-option -g default-shell /usr/bin/zsh
set -g prefix C-Space
set-window-option -g mode-keys vi

Expand All @@ -16,4 +18,8 @@ bind -n C-9 select-window -t 8

# prefixed
bind-key -T prefix b split-window -h
bind-key -T prefix v split-window -v
bind-key -T prefix v split-window -v
bind-key -r -T prefix Up select-pane -U
bind-key -r -T prefix Down select-pane -D
bind-key -r -T prefix Left select-pane -L
bind-key -r -T prefix Right select-pane -R

0 comments on commit 937b1a4

Please sign in to comment.