-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc.bundles
More file actions
executable file
·78 lines (65 loc) · 2.52 KB
/
vimrc.bundles
File metadata and controls
executable file
·78 lines (65 loc) · 2.52 KB
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
set runtimepath+=~/.vim/bundle/neobundle.vim/
call neobundle#begin(expand('~/.vim/bundle/'))
" Let NeoBundle manage NeoBundle
NeoBundleFetch 'Shougo/neobundle.vim'
" NeoBundle 'Shougo/unite.vim'
" NeoBundle 'Shougo/vimproc.vim'
NeoBundle 'tpope/vim-sensible'
" Auto Completion
NeoBundle 'Shougo/neocomplete'
NeoBundle 'Shougo/neosnippet'
NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'Raimondi/delimitMate'
" NeoBundle 'AutoClose'
" Core stuff
NeoBundle 'bling/vim-airline'
NeoBundle 'majutsushi/tagbar'
NeoBundle 'tpope/vim-surround'
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'tpope/vim-repeat'
NeoBundle 'tpope/vim-commentary'
NeoBundle 'tpope/vim-endwise'
" Utilities & Add-Ons
NeoBundle 'scrooloose/syntastic'
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'kien/ctrlp.vim'
NeoBundle 'rking/ag.vim'
NeoBundle 'airblade/vim-gitgutter'
NeoBundle 'vim-scripts/kwbdi.vim'
NeoBundle 'terryma/vim-multiple-cursors'
" Colors
NeoBundle 'godlygeek/csapprox'
NeoBundle 'skwp/vim-colors-solarized'
NeoBundle 'reedes/vim-colors-pencil'
" html/css
NeoBundle 'gregsexton/MatchTag'
NeoBundle 'othree/html5.vim'
" php
NeoBundle 'shawncplus/phpcomplete.vim'
" ruby
NeoBundle 'vim-ruby/vim-ruby'
" Web Development
NeoBundleLazy 'groenewege/vim-less', {'autoload':{'filetypes':['less']}}
NeoBundleLazy 'cakebaker/scss-syntax.vim', {'autoload':{'filetypes':['scss','sass']}}
NeoBundleLazy 'hail2u/vim-css3-syntax', {'autoload':{'filetypes':['css','scss','sass','stylus']}}
NeoBundleLazy 'ap/vim-css-color', {'autoload':{'filetypes':['css','scss','sass','less','stylus']}}
NeoBundleLazy 'wavded/vim-stylus', {'autoload':{'filetypes':['styl','stylus']}}
NeoBundleLazy 'digitaltoad/vim-jade', {'autoload':{'filetypes':['jade']}}
NeoBundleLazy 'pangloss/vim-javascript', {'autoload':{'filetypes':['javascript', 'html']}}
NeoBundleLazy 'kchmck/vim-coffee-script', {'autoload':{'filetypes':['coffee']}}
NeoBundleLazy 'leshill/vim-json', {'autoload':{'filetypes':['javascript','json']}}
NeoBundleLazy 'tpope/vim-haml', {'autoload':{'filetypes':['haml']}}
NeoBundleLazy 'slim-template/vim-slim', {'autoload':{'filetypes':['slim']}}
" Golang
NeoBundleLazy 'jnwhiteh/vim-golang', {'autoload':{'filetypes':['go']}}
NeoBundleLazy 'nsf/gocode', {'autoload': {'filetypes':['go']}, 'rtp': 'vim'}
" Filetypes & Syntax Highlighting
NeoBundle 'jtratner/vim-flavored-markdown'
NeoBundle 'StanAngeloff/php.vim'
NeoBundle 'mustache/vim-mustache-handlebars'
NeoBundle "lepture/vim-jinja"
NeoBundle "ekalinin/Dockerfile.vim"
call neobundle#end()
filetype plugin indent on
" Installation check.
NeoBundleCheck