ソースを参照

~/.vimrc: Use vundle.

It updates dependencies, which is nice, and documents which plugins I
use at the same time.
Lucas Stadler 13 年 前
コミット
f8f005309f
共有1 個のファイルを変更した17 個の追加1 個の削除を含む
  1. 17 1
      .vimrc

+ 17 - 1
.vimrc

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
" Have syntax highlighting and non-vi features
18
" Have syntax highlighting and non-vi features
2
syntax on
19
syntax on
3
filetype plugin indent on
20
filetype plugin indent on
4
set nocompatible
5
21
6
" Indent without helping me.
22
" Indent without helping me.
7
set autoindent
23
set autoindent