diff options
author | June McEnroe <curtis@hopper.com> | 2017-06-06 13:53:13 -0400 |
---|---|---|
committer | June McEnroe <curtis@hopper.com> | 2017-06-06 13:53:13 -0400 |
commit | 04263ef1d1398733f1ffff1233c277272c686e2a (patch) | |
tree | 5c9ce58b7dc9864baa06974a9a4d402b2febb1cc | |
parent | Add Tarmak layouts (diff) | |
download | src-04263ef1d1398733f1ffff1233c277272c686e2a.tar.gz src-04263ef1d1398733f1ffff1233c277272c686e2a.zip |
Use C-space as tmux prefix
In an attempt to be layout agnostic.
Diffstat (limited to '')
-rw-r--r-- | .tmux.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.tmux.conf b/.tmux.conf index b47a8414..46e9130a 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -5,14 +5,14 @@ set -g terminal-overrides "linux:cnorm=\e[?25h\e[?8c" # cvvis set -g escape-time 0 unbind C-b -set -g prefix C-e -bind e send-prefix +set -g prefix C-space +bind space send-prefix bind t new-window -c '#{pane_current_path}' bind s split-window -v -c '#{pane_current_path}' bind v split-window -h -c '#{pane_current_path}' -bind C-e last-window +bind C-space last-window bind C-w last-pane bind h previous-window bind l next-window |