optimized workflow in tmux using an mmux alias

This commit is contained in:
tomit4 2021-11-25 11:42:57 -08:00
parent f9c4917298
commit 624069ade3
2 changed files with 10 additions and 4 deletions

View file

@ -3,6 +3,9 @@ unbind C-b
set -g prefix C-x
bind C-x send-prefix
# Splitting the panes with | (vertical) and - (horizontal)
bind + split-window -h
# Splitting the panes with + (vertical) and - (horizontal)
bind = split-window -h
bind - split-window -v
# Enable mouse support
set -g mouse on