Adding align plugin for vim

This commit is contained in:
Hunter Haugen 2012-06-14 12:23:55 -07:00
parent ad4c2a75c9
commit dcd514fd00
3 changed files with 6 additions and 2 deletions

3
.gitmodules vendored
View file

@ -10,3 +10,6 @@
path = .vim/bundle/vundle
url = https://github.com/gmarik/vundle.git
ignore = dirty
[submodule ".vim/bundle/Align.vim"]
path = .vim/bundle/Align.vim
url = https://github.com/vim-scripts/Align.vim.git

1
.vim/bundle/Align.vim Submodule

@ -0,0 +1 @@
Subproject commit 59ee33392ded2c5236cca9d3f1ca7d4427b98e11

4
.vimrc
View file

@ -1129,8 +1129,8 @@ endif
set wildignore+=*/tmp/*,*.so,*.swp,*.zip " Linux/MacOSX
set wildignore+=tmp\*,*.swp,*.zip,*.exe " Windows
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*
let g:ctrlp_working_path_mode = 0
let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$',
let g:ctrlp_working_path_mode = 1
let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$'
noremap <Leader>p :CtrlPBuffer<CR>
noremap <Leader>P :CtrlPCurFile<CR>