.tmux.conf updated

This commit is contained in:
Kolan Sh 2014-06-26 19:06:20 +04:00
parent 439f874b82
commit 0ea91c28e2
1 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,14 @@
# Vim keys
# dirty hack for old tmux which doesn't support -c option
bind-key c new-window
bind s split-window -v
bind v split-window -h
# save current path for >=tmux-1.9a
bind-key c 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 h select-pane -L
bind j select-pane -D
bind k select-pane -U
@ -23,8 +31,8 @@ bind-key R respawn-window
#set set-remain-on-exit on
#
# # create the windows we really want
neww -n vim
splitw -v -p 20 -t 0
# neww -n vim
# splitw -v -p 20 -t 0
#
# # for future windows, revert r-o-e to global value
#set -u set-remain-on-exit