-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.vim
More file actions
33 lines (26 loc) · 795 Bytes
/
plugins.vim
File metadata and controls
33 lines (26 loc) · 795 Bytes
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
" Keep Plug commands between plug#begin() and plug#end().
call plug#begin()
" general
Plug 'ctrlpvim/ctrlp.vim'
Plug 'tpope/vim-surround'
Plug 'scrooloose/nerdcommenter'
" theme
Plug 'altercation/vim-colors-solarized'
" js/frontend
Plug 'pangloss/vim-javascript' " JavaScript support
Plug 'leafgarland/typescript-vim' " TypeScript syntax
Plug 'maxmellon/vim-jsx-pretty' " JS and JSX syntax
Plug 'neoclide/coc.nvim'
" ruby / rails
Plug 'tpope/vim-rails'
Plug 'tpope/vim-endwise' " adds end to if, do, def ...
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-bundler'
Plug 'ngmy/vim-rubocop'
" git
Plug 'tpope/vim-fugitive'
Plug 'github/copilot.vim'
" yaml
Plug 'lmeijvogel/vim-yaml-helper'
" All of your Plugins must be added before the following line
call plug#end() " required