diff options
author | Blubber <f2005278@mvrht.com> | 2016-10-10 00:29:44 +0200 |
---|---|---|
committer | Blubber <f2005278@mvrht.com> | 2016-10-10 00:29:44 +0200 |
commit | 3c2961a0d7c16407428b1f8bdae3f9810ebf2049 (patch) | |
tree | 71d330aedb719f91e8a8864b7288b8ebdf0d50dc /.tmux.conf | |
parent | 7b109147f6652c22bd7410619475e8b8b80f812f (diff) | |
download | dotfiles-3c2961a0d7c16407428b1f8bdae3f9810ebf2049.tar.gz dotfiles-3c2961a0d7c16407428b1f8bdae3f9810ebf2049.zip |
tmux changes prefix to C-s; vim changed leader to 'S' (capital s)
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ ### Basic Settings # re-map prefix key -set -g prefix C-x +set -g prefix C-s bind-key a send-prefix # for nested tmux sessions # re-source tmux.conf bind-key r source-file ~/.tmux.conf @@ -18,8 +18,8 @@ setw -g mouse on # default TERM set -g default-terminal "screen-256color" # split settings -bind-key s split-window -h -bind-key h split-window +bind-key v split-window -h +bind-key s split-window # move between splits bind-key k select-pane -U bind-key j select-pane -D |