-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.bundles
55 lines (48 loc) · 1.31 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
call plug#begin('~/.vim/bundle')
" The Pope Stuff
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-rhubarb'
Plug 'tpope/vim-unimpaired'
"Plug 'christoomey/vim-run-interactive'
Plug 'editorconfig/editorconfig-vim'
"Plug 'janko-m/vim-test'
"Plug 'pbrisbin/vim-mkdir'
"Plug 'scrooloose/syntastic'
"Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-projectionist'
Plug 'tpope/vim-vinegar'
Plug 'tomtom/tcomment_vim'
Plug 'scrooloose/nerdtree'
Plug 'haya14busa/incsearch.vim'
Plug 'terryma/vim-multiple-cursors'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'ntpeters/vim-better-whitespace'
" Plug 'easymotion/vim-easymotion'
Plug 'dyng/ctrlsf.vim'
" Languages:
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-rake'
Plug 'tpope/vim-bundler'
"Plug 'elixir-lang/vim-elixir'
"Plug 'slashmili/alchemist.vim'
"Plug 'c-brenn/phoenix.vim'
Plug 'hail2u/vim-css3-syntax'
Plug 'cakebaker/scss-syntax.vim'
Plug 'jelera/vim-javascript-syntax'
" Plug 'othree/javascript-libraries-syntax.vim'
" Plug 'w0rp/ale'
Plug 'mattn/emmet-vim'
" Fuzzy Finding
Plug 'ctrlpvim/ctrlp.vim'
" Themes
Plug 'nightsense/stellarized'
Plug 'drewtempelmeyer/palenight.vim'
" Fullscreen
Plug 'lambdalisue/vim-fullscreen'
call plug#end()