From: Oleg Broytman Date: Thu, 7 Jul 2016 20:22:59 +0000 (+0300) Subject: .tmux.conf: add reasonable binding for h/v split X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=c6f2f1a0b25b7f5993cb1a958f7d5bc60fbf7ac0;hp=f0a178bbb3805696b1665841a439cf437ee10820;p=dotfiles.git .tmux.conf: add reasonable binding for h/v split --- diff --git a/.tmux.conf b/.tmux.conf index b0a2d82..d7a47e5 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -76,3 +76,7 @@ bind-key R source-file ~/.tmux.conf \; display "Reloaded!" # # C-a for last-window # bind-key C-a last-window + +# Use vertical and horizontal chars to split the screen +bind-key | split-window -h +bind-key - split-window -v