-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.bundles
105 lines (85 loc) · 2.24 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
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
98
99
100
101
102
103
104
105
if &compatible
set nocompatible
end
" Remove declared plugins
function! s:UnPlug(plug_name)
if has_key(g:plugs, a:plug_name)
call remove(g:plugs, a:plug_name)
endif
endfunction
command! -nargs=1 UnPlug call s:UnPlug(<args>)
let g:has_async = v:version >= 800 || has('nvim')
call plug#begin('~/.vim/bundle')
" Define bundles via Github repos
" Plug 'christoomey/vim-run-interactive'
" If fzf has already been installed via Homebrew, use the existing fzf
" Otherwise, install fzf. The `--all` flag makes fzf accessible outside of vim
if isdirectory("/usr/local/opt/fzf")
Plug '/usr/local/opt/fzf'
else
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
endif
" RUBY
Plug 'slim-template/vim-slim'
" Plug 'xmisao/rubyjump.vim'
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-rails'
Plug 'thoughtbot/vim-rspec'
Plug 'tpope/vim-rake'
Plug 'vim-ruby/vim-ruby'
Plug 'ThanhKhoaIT/rails-db-migrate.vim'
Plug 'kana/vim-textobj-user'
Plug 'nelstrom/vim-textobj-rubyblock'
Plug 'tpope/vim-cucumber'
" SOLIDITY
Plug 'tomlion/vim-solidity'
" RUST
Plug 'rust-lang/rust.vim'
" REACTJS
Plug 'Ivo-Donchev/vim-react-goto-definition'
" VIM
Plug 'tpope/vim-eunuch'
Plug 'honza/vim-snippets'
Plug 'junegunn/fzf.vim'
Plug 'janko-m/vim-test'
Plug 'pangloss/vim-javascript'
Plug 'pbrisbin/vim-mkdir'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-rhubarb'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-dispatch'
Plug '907th/vim-auto-save'
Plug 'diepsohung/vim-move'
Plug 'Yggdroot/indentLine'
Plug 'ntpeters/vim-better-whitespace'
Plug 'mg979/vim-visual-multi', {'branch': 'master'}
Plug 'rking/ag.vim'
Plug 'easymotion/vim-easymotion'
Plug 'junegunn/gv.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Tree
Plug 'preservim/nerdtree'
" Tmux
Plug 'christoomey/vim-tmux-navigator'
" Colorful
Plug 'NLKNguyen/papercolor-theme'
Plug 'tomasiser/vim-code-dark'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Playground
" Plug 'mhinz/vim-startify'
" Git
Plug 'tpope/vim-fugitive'
" Code comment
Plug 'vim-scripts/tComment'
" Javascipt
Plug 'pangloss/vim-javascript'
Plug 'mxw/vim-jsx'
if g:has_async
" Plug 'dense-analysis/ale'
endif
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
call plug#end()