-
Notifications
You must be signed in to change notification settings - Fork 0
/
plug-list.vim
47 lines (37 loc) · 903 Bytes
/
plug-list.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
" Plugins list for vim-plug
call plug#begin('~/.vim/plugged')
" General
Plug 'ervandew/supertab'
Plug 'kien/ctrlp.vim'
Plug 'bogado/file-line'
Plug 'scrooloose/nerdcommenter'
Plug 'cohama/lexima.vim', { 'commit': 'ab74d24daf815c30de367c6e3518296eb9a84537' }
Plug 'terryma/vim-multiple-cursors'
Plug 'vim-syntastic/syntastic'
Plug 'bronson/vim-trailing-whitespace'
" Appearance
Plug 'dracula/vim', { 'as': 'dracula' }
" Snipmate
Plug 'tomtom/tlib_vim'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'garbas/vim-snipmate'
Plug 'honza/vim-snippets'
" Rails
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-rails'
" Git
Plug 'tpope/vim-fugitive'
Plug 'mattn/webapi-vim'
Plug 'mattn/gist-vim'
" HTML
Plug 'mattn/emmet-vim'
" CSS
Plug 'alexlafroscia/postcss-syntax.vim'
" JS
Plug 'prettier/vim-prettier'
" Elixir
Plug 'elixir-lang/vim-elixir'
"
" Tracking performance
Plug 'wakatime/vim-wakatime'
call plug#end()