-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimplugins
67 lines (47 loc) · 1.21 KB
/
vimplugins
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
"set the runtime path to include Vundle and initialize
exec 'set rtp+=' . vimdir . '/bundle/Vundle.vim'
call vundle#begin()
" Vundle
Plugin 'VundleVim/Vundle.vim'
" Library
Plugin 'L9'
" Theme
Plugin 'nanotech/jellybeans.vim'
Plugin 'notpratheek/vim-sol'
" MRU Cache
Plugin 'ctrlpvim/ctrlp.vim'
" Auto-completion
"if has('python')
Plugin 'valloric/youcompleteme'
"endif
" Syntax checking
Plugin 'scrooloose/syntastic'
" Nerdtree
Plugin 'scrooloose/nerdtree'
" Statusline
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
"Plugin 'bling/vim-bufferline'
" Startpage
Plugin 'mhinz/vim-startify'
" Git
Plugin 'tpope/vim-fugitive'
Plugin 'airblade/vim-gitgutter'
" Javascript support
Plugin 'pangloss/vim-javascript'
Plugin 'maksimr/vim-jsbeautify'
Plugin 'ternjs/tern_for_vim'
" Golang support
Plugin 'fatih/vim-go'
Plugin 'nsf/gocode', {'rtp': 'nvim/'}
" i3 config support
Plugin 'PotatoesMaster/i3-vim-syntax'
" nmap syntax support
Plugin 'vim-scripts/Nmap-syntax-highlight'
Plugin 'rust-lang/rust.vim'
Plugin 'mephux/bro.vim'
Plugin 'leafgarland/typescript-vim'
Plugin 'cespare/vim-toml'
call vundle#end() " required
filetype plugin indent on " required
" vim: set ft=vim: