diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-01-28 10:19:08 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-01-28 10:19:08 -0800 |
commit | 510df3becea8f161bbc5de95df426dcb2f145220 (patch) | |
tree | dc344bbab0799139bda1913ed278ba7b01e81555 | |
parent | [bash] cleanup basic configuration. (diff) | |
download | emacs.d-510df3becea8f161bbc5de95df426dcb2f145220.tar.gz |
[tmux] try a new binding to split windows.
Use binding similar to Emacs to split the windows (using 2 and 3).
-rw-r--r-- | tmux.conf | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tmux.conf b/tmux.conf index 5e9d2b1..5b2afff 100644 --- a/tmux.conf +++ b/tmux.conf @@ -4,8 +4,10 @@ unbind C-b set -g mouse-select-pane on setw -g aggressive-resize on -bind | split-window -h -bind - split-window -v - +# emacs binding set -gw mode-keys emacs +bind 2 split-window -v +bind 3 split-window -h + +# status set -g status on |