-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugins.vim
76 lines (66 loc) · 1.86 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
67
68
69
70
71
72
73
74
" Packages vim-plug
call plug#begin()
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' }
Plug 'lervag/vimtex'
Plug 'mileszs/ack.vim'
Plug 'jiangmiao/auto-pairs'
Plug 'jlanzarotta/bufexplorer'
Plug 'kien/ctrlp.vim'
Plug 'Raimondi/delimitMate'
Plug 'mattn/emmet-vim'
Plug 'junegunn/goyo.vim'
Plug 'scrooloose/nerdtree'
Plug 'chr4/nginx.vim'
Plug 'amix/open_file_under_cursor.vim'
Plug 'aklt/plantuml-syntax'
Plug 'rust-lang/rust.vim'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'tomtom/tlib_vim'
Plug 'scrooloose/snipmate-snippets'
Plug 'garbas/vim-snipmate'
Plug 'honza/vim-snippets'
Plug 'w0rp/ale'
Plug 'godlygeek/tabular'
Plug 'tomtom/tlib_vim'
Plug 'leafgarland/typescript-vim'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'Chiel92/vim-autoformat'
Plug 'sophacles/vim-bundle-mako'
Plug 'kchmck/vim-coffee-script'
Plug 'tpope/vim-commentary'
Plug 'elixir-editors/vim-elixir'
Plug 'isRuslan/vim-es6'
Plug 'terryma/vim-expand-region'
Plug 'nvie/vim-pyflakes'
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
Plug 'fatih/vim-go'
Plug 'michaeljsmith/vim-indent-object'
Plug 'groenewege/vim-less'
Plug 'plasticboy/vim-markdown'
Plug 'kristijanhusak/vim-multiple-cursors'
Plug 'mustache/vim-mustache-handlebars'
Plug 'digitaltoad/vim-pug'
Plug 'tpope/vim-repeat'
Plug 'scrooloose/vim-slumlord'
Plug 'tpope/vim-surround'
Plug 'posva/vim-vue'
Plug 'maxbrunsfeld/vim-yankstack'
Plug 'amix/vim-zenroom'
Plug 'yegappan/mru'
Plug 'vim-scripts/peaksea'
Plug 'wesgibbs/vim-irblack'
Plug 'dsawardekar/ember.vim'
Plug 'tpope/vim-rails'
Plug 'mustache/vim-mustache-handlebars'
Plug 'Glench/Vim-Jinja2-Syntax'
Plug 'slim-template/vim-slim'
" Themes
Plug 'morhetz/gruvbox'
Plug 'itchyny/lightline.vim'
Plug 'vim-scripts/mayansmoke'
Plug 'altercation/vim-colors-solarized'
Plug 'flazz/vim-colorschemes'
Plug 'therubymug/vim-pyte'
call plug#end()