1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-11-21 19:52:29 +00:00

Added unimpaired to vim

Also added mouse pane resize to tmux
This commit is contained in:
J.Fernando Sánchez 2013-01-09 00:38:01 +01:00
parent 81eaa0dd98
commit 4f9fa7c3e7
2 changed files with 4 additions and 1 deletions

View File

@ -33,6 +33,8 @@ bind + resize-pane -U 1
bind < resize-pane -L 1 bind < resize-pane -L 1
bind > resize-pane -R 1 bind > resize-pane -R 1
#Turn broadcasting on/off
bind b set-window-option synchronize-panes
# Set status bar # Set status bar
set -g status-bg black set -g status-bg black
@ -54,7 +56,7 @@ setw -g automatic-rename on
# Mouse and panes # Mouse and panes
setw -g mode-mouse on setw -g mode-mouse on
set-option -g mouse-select-pane on set-option -g mouse-select-pane on
set-option -g mouse-resize-pane on
# Start new-session as default # Start new-session as default
new-session new-session

1
vimrc
View File

@ -20,6 +20,7 @@ Bundle "garbas/vim-snipmate"
Bundle "SpellCheck" Bundle "SpellCheck"
Bundle "mattn/gist-vim" Bundle "mattn/gist-vim"
Bundle "mattn/webapi-vim" Bundle "mattn/webapi-vim"
Bundle "tpope/vim-unimpaired"
filetype plugin indent on " required! filetype plugin indent on " required!