-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplug.vim
More file actions
52 lines (44 loc) · 1.48 KB
/
plug.vim
File metadata and controls
52 lines (44 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
" Install vim-plug if we don't already have it
if empty(glob("~/.vim/autoload/plug.vim"))
" Ensure all needed directories exist (Thanks @kapadiamush)
execute '!mkdir -p ~/.vim/plugged'
execute '!mkdir -p ~/.vim/autoload'
" Download the actual plugin manager
execute '!curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim'
endif
call plug#begin('~/.vim/plugged')
Plug 'bling/vim-airline'
Plug 'bling/vim-bufferline'
Plug 'scrooloose/syntastic'
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/nerdcommenter'
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
Plug 'kien/rainbow_parentheses.vim'
Plug 'flazz/vim-colorschemes'
Plug 'NLKNguyen/papercolor-theme'
Plug 'jamessan/vim-gnupg'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'Shougo/neocomplete.vim'
Plug 'vimwiki/vimwiki'
" Haskell tools
Plug 'Shougo/vimproc.vim', { 'do': 'make' }
Plug 'eagletmt/ghcmod-vim', { 'for': 'haskell' }
Plug 'eagletmt/neco-ghc', { 'for': 'haskell' }
" Misc. languages
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
" HTML/web
Plug 'othree/html5.vim'
Plug 'vim-pandoc/vim-pandoc', { 'for': 'markdown' }
Plug 'vim-pandoc/vim-pandoc-syntax' , { 'for': 'markdown' }
" Potential
" Plug 'mattn/emmet-vim' " HTML/CSS editor snippets
" Disabled
" Plug 'sjl/gundo' " Graphical undo
" Plug 'tikhomirov/vim-glsl'
" Plug 'raichoo/purescript-vim'
" Plug 'ledger/vim-ledger'
" Retired
" Plug 'tpope/vim-pathogen'
" Plug 'VundleVim/Vundle.vim'
call plug#end()