forked from mutewinter/dot_vim
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugged.vim
More file actions
97 lines (93 loc) · 2.49 KB
/
plugged.vim
File metadata and controls
97 lines (93 loc) · 2.49 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
call plug#begin('~/.vim/plugged')
" ---------------
" Plugin Bundles
" ---------------
" Navigation
if has("gui_macvim")
Plug 'kien/ctrlp.vim'
else
Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'
endif
Plug 'vim-scripts/FuzzyFinder'
Plug 'tpope/vim-unimpaired'
Plug 'vim-scripts/file-line'
" UI Additions
Plug 'vim-airline/vim-airline'
Plug 'tpope/vim-vinegar'
"Plug 'scrooloose/nerdtree'
Plug 'chriskempson/vim-tomorrow-theme'
Plug 'mhinz/vim-signify'
" Commands
Plug 'tpope/vim-eunuch'
Plug 'scrooloose/nerdcommenter'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-fugitive'
Plug 'tommcdo/vim-fubitive'
Plug 'tpope/vim-rhubarb'
Plug 'godlygeek/tabular'
Plug 'junegunn/vim-easy-align'
Plug 'rking/ag.vim'
Plug 'erickbelfy/rg.vim'
Plug 'vim-scripts/keepcase.vim'
Plug 'vim-scripts/Shortcut-functions-for-KeepCase-script-'
Plug 'mtth/scratch.vim'
Plug 'tpope/vim-speeddating'
Plug 'swaroopch/vim-markdown-preview'
Plug 'skalnik/vim-vroom'
Plug 'mattn/gist-vim'
Plug 'mbbill/undotree'
Plug 'tpope/vim-abolish'
Plug 'terryma/vim-multiple-cursors'
" Automatic Helpers
Plug 'alvan/vim-closetag'
Plug 'xolox/vim-session'
Plug 'xolox/vim-misc'
Plug 'w0rp/ale'
" post install (yarn install | npm install) then load plugin only for editing supported files
Plug 'prettier/vim-prettier', {
\ 'do': 'npm install -g',
\ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', 'yaml', 'html', 'ruby'] }
Plug 'neoclide/coc.nvim', {'tag': '*', 'do': { -> coc#util#install()}}
Plug 'tpope/vim-endwise'
Plug 'vim-scripts/matchit.zip'
Plug 'tpope/vim-repeat'
Plug 'editorconfig/editorconfig-vim'
Plug 'MattesGroeger/vim-bookmarks'
"Plug 'Valloric/YouCompleteMe'
"end
" Language Additions
"Plug 'sheerun/vim-polyglot'
Plug 'fatih/vim-go'
Plug 'AndrewRadev/splitjoin.vim'
" Ruby
"Plug 'autozimu/LanguageClient-neovim', {
"\ 'branch': 'next',
"\ 'do': 'bash install.sh',
"\ }
Plug 'ecomba/vim-ruby-refactoring'
Plug 'tpope/vim-haml'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-rake'
" JavaScript
Plug 'pangloss/vim-javascript'
Plug 'mxw/vim-jsx'
Plug 'leafgarland/typescript-vim'
Plug 'Quramy/tsuquyomi'
" Python
Plug 'nvie/vim-flake8'
" HTML
Plug 'othree/html5.vim'
" Other Languages
Plug 'jvirtanen/vim-octave'
Plug 'msanders/cocoa.vim'
Plug 'itspriddle/vim-jekyll'
Plug 'tomlion/vim-solidity'
" MatchIt
Plug 'kana/vim-textobj-user'
Plug 'nelstrom/vim-textobj-rubyblock'
" Libraries required by other plugins
Plug 'vim-scripts/L9'
Plug 'mattn/webapi-vim'
" Initialize plugin system
call plug#end()