-
Notifications
You must be signed in to change notification settings - Fork 1
/
.vim-bundles
67 lines (52 loc) · 1.5 KB
/
.vim-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
"" Vundle plugin manager
"" http://www.erikzaadi.com/2012/03/19/auto-installing-vundle-from-your-vimrc/
let has_vundle=1
if !filereadable($HOME."/.vim/bundle/vundle/README.md")
echo 'Installing Vundle...'
echo ''
silent !mkdir -p $HOME/.vim/bundle
silent !git clone https://github.com/gmarik/vundle $HOME/.vim/bundle/vundle
let has_vundle=0
endif
"" Initialize Vundle
filetype off
set rtp+=$HOME/.vim/bundle/vundle/
call vundle#rc()
"" Vundle can manage Vundle
Bundle 'gmarik/vundle'
"" T-H-E colorscheme
Bundle 'altercation/vim-colors-solarized'
"" Easy... motions... yeah.
Bundle 'Lokaltog/vim-easymotion'
"" Edit files using sudo/su
Bundle 'chrisbra/SudoEdit.vim'
"" Super easy commenting, toggle comments etc
Bundle 'scrooloose/nerdcommenter'
"" Awesome syntax and errors highlighter
"" REQUIREMENTS: See :h Syntastic
Bundle 'scrooloose/syntastic'
"" Syntax highlight
Bundle 'plasticboy/vim-markdown'
Bundle 'cakebaker/scss-syntax.vim'
"" UI Additions
Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'bling/vim-airline'
Bundle 'jszakmeister/vim-togglecursor'
"" Autoclose (, etc
Bundle 'Townk/vim-autoclose'
"" Align your = etc.
Bundle 'vim-scripts/Align'
"" Ruby
Bundle 'vim-ruby/vim-ruby'
Bundle 'tpope/vim-haml'
"" JavaScript
Bundle 'pangloss/vim-javascript'
Bundle 'kchmck/vim-coffee-script'
"" Installing plguins the first time
if has_vundle == 0
echo 'Installing Bundles, please ignore key map error messages'
echo ''
:BundleInstall
endif
"" required!
filetype plugin indent on