summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-04-20 12:09:57 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-04-20 12:11:03 +0200
commit1443be02d966d50ac8a854917957aad5a7334565 (patch)
tree8f7f9dfc99ead5944abbacbb8632c33846b6f6a5
parent28b366bf9fe82427cfb1f4678ae7feb0e05755fd (diff)
downloaddotfiles-1443be02d966d50ac8a854917957aad5a7334565.tar.gz
dotfiles-1443be02d966d50ac8a854917957aad5a7334565.tar.xz
vim: Add YMC and vundle
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--.gitmodules6
m---------.vim/bundle/YouCompleteMe0
m---------.vim/bundle/syntastic0
m---------.vim/bundle/vundle0
-rw-r--r--.vimrc11
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
diff --git a/.vimrc b/.vimrc
index 2df499b..f512f04 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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