-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.vim
52 lines (40 loc) · 1.15 KB
/
bundle.vim
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
set nocompatible
filetype off
if !isdirectory(expand("~/.vim/bundle/Vundle/.git"))
!git clone git://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle
endif
set rtp+=~/.vim/bundle/Vundle
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'rking/ag.vim.git'
Plugin 'Townk/vim-autoclose'
Plugin 'tpope/vim-endwise'
Plugin 'vim-syntastic/syntastic'
Plugin 'vim-ruby/vim-ruby'
Plugin 'tpope/vim-rake'
Plugin 'tpope/vim-rails'
Plugin 'tpope/vim-bundler'
Plugin 'slim-template/vim-slim'
Plugin 'mxw/vim-jsx'
Plugin 'Chiel92/vim-autoformat'
Plugin 'Exafunction/codeium.vim'
Plugin 'thoughtbot/vim-rspec.git'
Plugin 'benmills/vimux.git'
Plugin 'tpope/vim-fugitive'
Plugin 'christoomey/vim-conflicted'
Plugin 'airblade/vim-gitgutter'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdcommenter'
Plugin 'ervandew/supertab'
Plugin 'tpope/vim-surround'
Plugin 'kana/vim-textobj-user'
Plugin 'nelstrom/vim-textobj-rubyblock'
Plugin 'tpope/vim-eunuch'
Plugin 'brooth/far.vim'
Plugin 'godlygeek/tabular'
Plugin 'preservim/vim-markdown'
Plugin 'w0ng/vim-hybrid'
Plugin 'ghifarit53/tokyonight-vim'
call vundle#end()
filetype plugin indent on