summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorBlubber <f2005278@mvrht.com>2016-10-10 00:29:44 +0200
committerBlubber <f2005278@mvrht.com>2016-10-10 00:29:44 +0200
commit3c2961a0d7c16407428b1f8bdae3f9810ebf2049 (patch)
tree71d330aedb719f91e8a8864b7288b8ebdf0d50dc /.tmux.conf
parent7b109147f6652c22bd7410619475e8b8b80f812f (diff)
downloaddotfiles-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.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 93b92cc..30528ef 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -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