-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.bundles
117 lines (94 loc) · 2.61 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
106
107
108
109
110
111
112
113
114
115
116
117
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#rc()
" Let Vundle manage Vundle
Bundle 'gmarik/vundle'
" Define bundles via Github repos
" Bundle 'tpope/vim-projectionist'
" Bundle 'geekjuice/vim-spec'
" Bundle 'kana/vim-textobj-user'
" Bundle 'nelstrom/vim-textobj-rubyblock'
" Bundle 'tpope/vim-rails'
" Bundle 'tpope/vim-haml'
" Bundle 'vim-ruby/vim-ruby'
Bundle 'tpope/vim-sensible'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-rhubarb'
Bundle 'rking/ag.vim'
Bundle 'kien/ctrlp.vim'
Bundle 'tpope/vim-bundler'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
" Bundle 'tpope/vim-endwise'
Bundle 'tpope/vim-surround'
Bundle 'tmhedberg/matchit'
Bundle 'vim-scripts/tComment'
Bundle "skwp/greplace.vim"
Bundle "scrooloose/syntastic"
Bundle "dkprice/vim-easygrep"
Bundle "altercation/vim-colors-solarized"
Bundle "myusuf3/numbers.vim"
Bundle 'jgdavey/tslime.vim'
Bundle 'henrik/vim-qargs'
Plugin 'yuezk/vim-js'
Plugin 'maxmellon/vim-jsx-pretty'
Plugin 'HerringtonDarkholme/yats.vim'
Bundle 'terryma/vim-expand-region'
Bundle 'jiangmiao/auto-pairs'
Plugin 'rentziass/vim-snippets'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'Shougo/neocomplete.vim'
Plugin 'Shougo/neosnippet'
Plugin 'Shougo/neosnippet-snippets'
Plugin 'mattn/emmet-vim'
Plugin 'fatih/vim-go'
Plugin 'rizzatti/dash.vim'
Plugin 'editorconfig/editorconfig-vim'
" Twig syntax highlighting
Plugin 'nelsyeung/twig.vim'
" Restore cursor position and folding
Bundle 'vim-scripts/restore_view.vim'
" Theme
Plugin 'jpo/vim-railscasts-theme'
" Plugin 'mhartington/oceanic-next'
Bundle 'ajmwagar/vim-deus'
" Vim Rspec
" Bundle "thoughtbot/vim-rspec"
" Vim I18n
"Bundle "rentziass/vim-i18n"
" Vim easy align
Bundle "junegunn/vim-easy-align"
" Indentation guides
Bundle "Yggdroot/indentLine"
" Sidebar
Bundle "scrooloose/nerdtree"
" Plugin 'kyazdani42/nvim-web-devicons'
" Plugin 'ryanoasis/vim-devicons'
" Plugin 'kyazdani42/nvim-tree.lua'
" Colorscheme
" Plugin '[email protected]:fugalh/desert.vim.git'
" JSX Syntax highlighting
" Plugin 'mxw/vim-jsx'
" Deoplete Autocomplete
" if has('nvim')
" Plugin 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
" endif
"Denite Search
if has('nvim')
Plugin 'Shougo/denite.nvim', { 'do': ':UpdateRemotePlugins' }
else
Plugin 'Shougo/denite.nvim'
Plugin 'roxma/nvim-yarp'
Plugin 'roxma/vim-hug-neovim-rpc'
endif
" Lint Engine
" Plugin 'w0rp/ale'
" Search through all files
Plugin 'dyng/ctrlsf.vim'
Plugin 'neoclide/coc.nvim', {'branch': 'release'}
Plugin 'christoomey/vim-tmux-navigator'
" Autoclose html, js tags
Plugin 'alvan/vim-closetag'
" Plugin 'github/copilot.vim'
filetype on