diff options
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.tmux.conf b/.tmux.conf index 06c1d765..bfd97921 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,6 +1,6 @@ unbind C-b set -g prefix C-e -bind C-e send-prefix +bind e send-prefix set -g escape-time 0 set -g default-terminal 'screen-256color' @@ -17,7 +17,7 @@ set -g window-status-separator '|' set -g status-style bg=black,fg=white bind t new-window -c '#{pane_current_path}' -bind o last-window +bind C-e last-window bind s split-window -v -c '#{pane_current_path}' bind v split-window -h -c '#{pane_current_path}' |