diff options
author | Adrian Kummerlaender | 2017-05-06 15:41:42 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2017-05-06 15:50:10 +0200 |
commit | 8cbd4237a72c4a35cce9189e84ef8090bd486b22 (patch) | |
tree | 519f5a405d87f28b00ff334b9d3640ebb96cfca7 /tmux | |
parent | 505761243109d3255a77dbaeb6d8e0a4f61eb045 (diff) | |
download | dotfiles-8cbd4237a72c4a35cce9189e84ef8090bd486b22.tar dotfiles-8cbd4237a72c4a35cce9189e84ef8090bd486b22.tar.gz dotfiles-8cbd4237a72c4a35cce9189e84ef8090bd486b22.tar.bz2 dotfiles-8cbd4237a72c4a35cce9189e84ef8090bd486b22.tar.lz dotfiles-8cbd4237a72c4a35cce9189e84ef8090bd486b22.tar.xz dotfiles-8cbd4237a72c4a35cce9189e84ef8090bd486b22.tar.zst dotfiles-8cbd4237a72c4a35cce9189e84ef8090bd486b22.zip |
Switch SSH sessions from `screen` to `tmux`
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/.tmux.conf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..7bad0c4 --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,13 @@ +set -g default-terminal screen-256color + +set-window-option -g mode-keys vi + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +bind-key -n C-h select-pane -L +bind-key -n C-j select-pane -D +bind-key -n C-k select-pane -U +bind-key -n C-l select-pane -R |