forked from hashrocket/dotmatrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimbundle
83 lines (75 loc) · 1.99 KB
/
.vimbundle
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
75
76
77
78
79
80
81
82
83
" vim: ft=vim
" Vim Plugins via Vim Plug
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
if &compatible
set nocompatible
end
call plug#begin('~/.vim/bundle')
" Make sure you use single quotes
" Language
" Plug 'sheerun/vim-polyglot'
Plug 'leafgarland/typescript-vim'
Plug 'keith/swift.vim'
" Miscellaneous
Plug 'AndrewRadev/splitjoin.vim'
Plug 'ervandew/supertab'
Plug 'godlygeek/tabular'
Plug 'rbong/vim-flog'
Plug 'tpope/vim-abolish'
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-cucumber'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-git'
Plug 'tpope/vim-haml'
Plug 'tpope/vim-projectionist'
Plug 'tpope/vim-ragtag'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-rake'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-rsi'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-sleuth'
Plug 'tpope/vim-speeddating'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
Plug 'tpope/vim-vinegar'
Plug 'tpope/vim-vividchalk'
Plug 'tpope/vim-dispatch'
Plug 'tpope/vim-dadbod'
Plug 'scrooloose/nerdtree'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'christoomey/vim-tmux-navigator'
Plug 'christoomey/vim-tmux-runner'
Plug 'sbdchd/neoformat'
Plug 'airblade/vim-gitgutter'
Plug 'diepm/vim-rest-console'
Plug '/usr/local/opt/fzf'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'wellle/tmux-complete.vim'
Plug 'davidhalter/jedi-vim'
Plug 'itchyny/lightline.vim'
Plug 'vim-test/vim-test'
Plug 'junegunn/gv.vim'
Plug 'junegunn/goyo.vim'
Plug 'junegunn/limelight.vim'
Plug 'plasticboy/vim-markdown'
Plug 'amix/vim-zenroom2'
" CoC
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
" Themes
Plug 'trevordmiller/nova-vim'
Plug 'altercation/vim-colors-solarized'
Plug 'brandonshega/material-vim'
Plug 'junegunn/seoul256.vim'
Plug 'dracula/vim', { 'as': 'dracula'}
Plug 'connorholyday/vim-snazzy'
if filereadable(expand('~/.vimbundle.local'))
source ~/.vimbundle.local
endif
" Initialize plugin system
call plug#end()