From dcfd721ef7db11c5dc8420f720a45cab6dcc382b Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Sat, 9 Jun 2012 11:29:58 -0500 Subject: [PATCH] .vim: Add bundles: command-t, nerdtree, ack --- .gitmodules | 12 ++++++++++++ .vim/bundle/ack | 1 + .vim/bundle/command-t | 1 + .vim/bundle/nerdtree | 1 + .vimrc | 16 +++++++++++++--- 5 files changed, 28 insertions(+), 3 deletions(-) create mode 160000 .vim/bundle/ack create mode 160000 .vim/bundle/command-t create mode 160000 .vim/bundle/nerdtree diff --git a/.gitmodules b/.gitmodules index 0ea1344..4a02965 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,3 +18,15 @@ path = .vim/bundle/gundo url = git://github.com/sjl/gundo.vim.git ignore = dirty +[submodule ".vim/bundle/command-t"] + path = .vim/bundle/command-t + url = git://github.com/wincent/Command-T.git + ignore = dirty +[submodule ".vim/bundle/nerdtree"] + path = .vim/bundle/nerdtree + url = git://github.com/scrooloose/nerdtree.git + ignore = dirty +[submodule ".vim/bundle/ack"] + path = .vim/bundle/ack + url = git://github.com/mileszs/ack.vim.git + ignore = dirty diff --git a/.vim/bundle/ack b/.vim/bundle/ack new file mode 160000 index 0000000..9895285 --- /dev/null +++ b/.vim/bundle/ack @@ -0,0 +1 @@ +Subproject commit 9895285042a2fd5691b2f6582aa979e4d1bdffea diff --git a/.vim/bundle/command-t b/.vim/bundle/command-t new file mode 160000 index 0000000..67e3976 --- /dev/null +++ b/.vim/bundle/command-t @@ -0,0 +1 @@ +Subproject commit 67e39768ea3a0a01eabcb511e47530558a4534de diff --git a/.vim/bundle/nerdtree b/.vim/bundle/nerdtree new file mode 160000 index 0000000..2cb0fc7 --- /dev/null +++ b/.vim/bundle/nerdtree @@ -0,0 +1 @@ +Subproject commit 2cb0fc78fb4c7a1db5f51c042a447cc50f09983d diff --git a/.vimrc b/.vimrc index ae8d654..34354a5 100644 --- a/.vimrc +++ b/.vimrc @@ -153,9 +153,6 @@ if version >= 700 nnoremap :sbprevious endif -"" to gundo -nnoremap :GundoToggle - " disable default vim regex handling for searching nnoremap / /\v vnoremap / /\v @@ -253,3 +250,16 @@ au BufNewFile,BufRead *.markdown set filetype=octopress let g:manpageview_pgm= 'man -P "/usr/bin/less -is"' let $MANPAGER = '/usr/bin/less -is' +" -------------------------------------------------------------------------- +" Bundle Config +" -------------------------------------------------------------------------- + +" NERDTree +let NERDTreeIgnore = ['\.pyc$', '\~$', '\.rbc$'] +map :NERDTreeToggle +let NERDTreeMinimalUI=1 +let NERDTreeDirArrows=1 + +"" Gundo +nnoremap :GundoToggle + -- 2.43.0