diff options
-rw-r--r-- | .gitmodules | 6 | ||||
m--------- | .vim/bundle/YouCompleteMe | 0 | ||||
m--------- | .vim/bundle/syntastic | 0 | ||||
m--------- | .vim/bundle/vundle | 0 | ||||
-rw-r--r-- | .vimrc | 11 |
5 files changed, 16 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index eb89c28..1221c5f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,9 @@ [submodule ".vim/bundle/syntastic"] path = .vim/bundle/syntastic url = https://github.com/scrooloose/syntastic.git +[submodule ".vim/bundle/vundle"] + path = .vim/bundle/vundle + url = https://github.com/gmarik/vundle.git +[submodule ".vim/bundle/YouCompleteMe"] + path = .vim/bundle/YouCompleteMe + url = https://github.com/Valloric/YouCompleteMe.git diff --git a/.vim/bundle/YouCompleteMe b/.vim/bundle/YouCompleteMe new file mode 160000 +Subproject 589f157aa63b5c041897d56b517107bad9ac7f8 diff --git a/.vim/bundle/syntastic b/.vim/bundle/syntastic -Subproject 6d5a604251628fcfcc725a396b6d990044a645c +Subproject 6f214cbb6d42256031aaa9670cf9ea7358e1843 diff --git a/.vim/bundle/vundle b/.vim/bundle/vundle new file mode 160000 +Subproject 3dcb0c32991026d0d226aaad57b622c6553cd0d @@ -43,7 +43,16 @@ set wildignore=*.o,*.a,*.class,*.mo,*.la,*.swp,*.jpg,*.png,*.xpm,*.gif,*.pyc,*~, let mapleader = "," -call pathogen#infect() +"call pathogen#infect() + +filetype off +set rtp+=~/.vim/bundle/vundle/ +call vundle#rc() + +Bundle 'scrooloose/syntastic' +Bundle 'Valloric/YouCompleteMe' + +filetype plugin indent on "aliases cnorea w!! w !sudo tee "%" > /dev/null |