-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathplugins.vim
66 lines (48 loc) · 1.1 KB
/
plugins.vim
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
call plug#begin()
" Filer
Plug 'Shougo/unite.vim'
Plug 'Shougo/unite-outline'
Plug 'Shougo/vimfiler.vim'
Plug 'ctrlpvim/ctrlp.vim'
" Syntax
Plug 'pangloss/vim-javascript'
" Status bar
Plug 'itchyny/lightline.vim'
Plug 'maximbaz/lightline-ale'
" Git
Plug 'mhinz/vim-signify'
Plug 'jreybert/vimagit'
" Syntax
Plug 'tpope/vim-markdown'
Plug 'tpope/vim-cucumber'
Plug 'nono/vim-handlebars'
" Theme
Plug 'arcticicestudio/nord-vim'
" Lint
Plug 'w0rp/ale', { 'do': 'npm install --loglevel notice -g eslint jsonlint prettier' }
" Terminal
Plug '~/dev/split-term.vim'
" Plug 'vimlab/split-term.vim'
" Snippets
Plug 'drmingdrmer/xptemplate'
" Templates
Plug 'aperezdc/vim-template'
" FileSystem
Plug 'tpope/vim-eunuch'
" Session
Plug 'tpope/vim-obsession'
" Layout / Windows Managemenr
Plug 'wesQ3/vim-windowswap'
" API Blueprint
Plug 'kylef/apiblueprint.vim'
" Misc
Plug 'mileszs/ack.vim'
Plug 'godlygeek/tabular'
Plug 'tomtom/tcomment_vim'
Plug 'ryanoasis/vim-devicons'
Plug 'mattn/emmet-vim'
Plug 'moll/vim-node'
Plug 'tpope/vim-dispatch'
Plug 'terryma/vim-multiple-cursors'
Plug 'mhinz/vim-startify'
call plug#end()