-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.bundles
60 lines (51 loc) · 1.36 KB
/
vimrc.bundles
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
set nocompatible
filetype off
call plug#begin('~/.vim/plugged')
" colors
Plug 'dracula/vim', { 'as': 'dracula' }
"
" languages
Plug 'tpope/vim-markdown'
Plug 'xenoterracide/html.vim'
Plug 'c-brenn/phoenix.vim'
" covers a ton of languages https://github.com/sheerun/vim-polyglot
Plug 'sheerun/vim-polyglot'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-rails'
Plug 'jgdavey/tslime.vim'
Plug 'tomtom/tcomment_vim'
Plug 'mileszs/ack.vim'
Plug 'christoomey/vim-tmux-navigator'
Plug 'mustache/vim-mustache-handlebars'
Plug 'itchyny/lightline.vim'
Plug 'scrooloose/syntastic'
Plug 'tomtom/tlib_vim'
Plug 'pbrisbin/vim-mkdir'
Plug 'derekprior/vim-trimmer'
Plug 'christoomey/vim-conflicted'
Plug 'janko-m/vim-test'
Plug 'skwp/greplace.vim'
Plug 'tpope/vim-projectionist'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-vinegar'
Plug 'mhinz/vim-mix-format'
Plug 'AndrewRadev/splitjoin.vim'
Plug 'k0kubun/vim-open-github'
Plug 'vim-ruby/vim-ruby'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'ervandew/supertab'
Plug 'dkprice/vim-easygrep'
Plug 'endel/vim-github-colorscheme'
Plug 'djoshea/vim-autoread'
Plug 'ludovicchabant/vim-gutentags'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'dense-analysis/ale'
" search and replace
" :Far
Plug 'brooth/far.vim'
call plug#end()
filetype on