Bladeren bron

~/.vimrc: Use vundle.

It updates dependencies, which is nice, and documents which plugins I
use at the same time.
Lucas Stadler 13 jaren geleden
bovenliggende
commit
f8f005309f
1 gewijzigde bestanden met toevoegingen van 17 en 1 verwijderingen
  1. 17 1
      .vimrc

+ 17 - 1
.vimrc

@ -1,7 +1,23 @@
1
set nocompatible
2
filetype off
3
4
set rtp+=~/.vim/bundle/vundle
5
call vundle#rc()
6
7
Bundle 'gmarik/vundle'
8
Bundle 'Valloric/YouCompleteMe'
9
Bundle 'Lokaltog/vim-easymotion'
10
"Bundle 'laurilehmijoki/haskellmode-vim'
11
"au BufNewFile,BufRead *.hs compiler ghc
12
Bundle 'scrooloose/syntastic'
13
Bundle 'bitc/vim-hdevtools'
14
au FileType haskell noremap <buffer> \ht :HdevtoolsType<CR>
15
au FileType haskell noremap <buffer> \hc :HdevtoolsClear<CR>
16
Bundle 'tpope/vim-foreplay'
17
1 18
" Have syntax highlighting and non-vi features
2 19
syntax on
3 20
filetype plugin indent on
4
set nocompatible
5 21
6 22
" Indent without helping me.
7 23
set autoindent