summaryrefslogtreecommitdiffstats
path: root/vim/vimrc
diff options
context:
space:
mode:
authoryushyin <yushyin@saga>2016-11-27 14:30:33 +0100
committeryushyin <yushyin@saga>2016-11-27 14:30:33 +0100
commit1e934844e94acfcba419f2f02d3b75ed50f763c3 (patch)
tree115571cb969c8282ea27a910d86e4bea6e38fb61 /vim/vimrc
parent00b9334e50db865c4e9151870201554c55c71a69 (diff)
downloaddotfiles-1e934844e94acfcba419f2f02d3b75ed50f763c3.tar.gz
dotfiles-1e934844e94acfcba419f2f02d3b75ed50f763c3.tar.xz
Vim: Add vim-operator-surround pluginHEADmaster
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 824498c..8c12bd5 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -82,6 +82,12 @@ if neobundle#tap('vim-easy-align')
nmap ga <Plug>(EasyAlign)
call neobundle#untap()
endif
+if neobundle#tap('vim-operator-surround')
+ nmap <silent>sa <Plug>(operator-surround-append)
+ nmap <silent>sd <Plug>(operator-surround-delete)
+ nmap <silent>sr <Plug>(operator-surround-replace)
+ call neobundle#untap()
+endif
if neobundle#tap('vim-addon-local-vimrc')
let g:local_vimrc = {'names':['.lvimrc'],'hash_fun':'LVRHashOfFile'}
call neobundle#untap()