-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc-neobundle
60 lines (49 loc) · 1.44 KB
/
.vimrc-neobundle
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
"NeoBundle Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=/home/glutaminefree/.vim/bundle/neobundle.vim/
" Required:
call neobundle#begin(expand('/home/glutaminefree/.vim/bundle'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" Bundles {
" colorschemes {
NeoBundle 'altercation/vim-colors-solarized'
" }
" appearance {
NeoBundle 'vim-airline/vim-airline'
NeoBundle 'vim-airline/vim-airline-themes'
" }
" programming helpers {
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'jistr/vim-nerdtree-tabs'
NeoBundle 'scrooloose/nerdcommenter'
"NeoBundle 'vim-scripts/taglist.vim'
NeoBundle 'Shougo/neosnippet'
NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'Raimondi/delimitMate'
"NeoBundle 'kazy1991/simple-browser.vim'
NeoBundle 'godlygeek/tabular'
"NeoBundle 'mattn/emmet-vim'
"NeoBundle 'tmhedberg/matchit'
" }
" syntax {
NeoBundle 'sheerun/vim-polyglot'
NeoBundle 'posva/vim-vue'
NeoBundle 'gko/vim-coloresque'
" }
" other {
NeoBundle 'Shougo/vimproc.vim', {'build': {'linux': 'make', 'unix': 'gmake'}}
" }
"}
" Required:
call neobundle#end()
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
"End NeoBundle Scripts-------------------------