-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.bundle
79 lines (58 loc) · 1.7 KB
/
vimrc.bundle
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
79
" https://github.com/Shougo/neobundle.vim
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim
endif
" Required:
call neobundle#begin(expand('~/.vim/bundle/'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
call neobundle#end()
" https://github.com/Shougo/unite.vim
" http://bling.github.io/blog/2013/06/02/unite-dot-vim-the-plugin-you-didnt-know-you-need/
" Unite {{{{
" does a lot of things
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neomru.vim'
NeoBundle 'Shougo/unite-session'
NeoBundle 'tsukkee/unite-help'
NeoBundle 'ujihisa/unite-colorscheme'
" }}}}
" Editting {{{
NeoBundle 'kana/vim-smartinput'
NeoBundle 'tyru/caw.vim'
" }}}
" Utility {{{
NeoBundle 'Shougo/vimshell.git'
NeoBundle 'Shougo/vimproc', {
\ 'build' : {
\ 'windows' : 'make -f make_mingw32.mak',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'unix' : 'make -f make_unix.mak',
\ },
\ }
NeoBundle 'Shougo/vimfiler'
NeoBundle 'Shougo/neocomplete'
" NeoBundle 'Valloric/YouCompleteMe'
NeoBundle 'Shougo/neosnippet.vim'
NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'MattesGroeger/vim-bookmarks'
" }}}
" Syntax {{{
" Scala
NeoBundle 'derekwyatt/vim-scala'
" }}}
" Color Scheme {{{
" color schema 256
" NeoBundle 'tomasr/molokai'
" NeoBundle 'jaromero/vim-monokai-refined'
NeoBundle 'sickill/vim-monokai'
NeoBundle 'endel/vim-github-colorscheme'
" }}}
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
set rtp+=$SITE_PACKAGES/powerline/bindings/vim