-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc.bundle
39 lines (34 loc) · 1.28 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
"--------------------------------------------------------------------
" vim-neobundle
"--------------------------------------------------------------------
if has('vim_starting')
set nocompatible
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#begin(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
" Plugins
NeoBundle 'Shougo/unite.vim' " Filer
NeoBundle 'sgur/unite-git_grep' " Git grep
NeoBundle 'Shougo/neomru.vim' " dep:unite
NeoBundle 'Shougo/neocomplete' " Complement
NeoBundle 'Shougo/neosnippet' " Snippet
NeoBundle 'Shougo/neosnippet-snippets' " Snippet
NeoBundle 'Shougo/vimproc.vim', {'build': {'others': 'make'}} " dep:unite grep, async, etc..
NeoBundle 'junegunn/vim-easy-align'
NeoBundle 'tpope/vim-surround'
NeoBundle 'taku-o/vim-toggle' " turn true/false, ++, --
NeoBundle 'itchyny/lightline.vim' " Powerful status bar
NeoBundle 'tpope/vim-fugitive' " Git
NeoBundle 'xolox/vim-session', {'depends' : 'xolox/vim-misc',}
NeoBundle 'derekwyatt/vim-scala',
NeoBundle 'neovimhaskell/haskell-vim'
NeoBundle 'airblade/vim-gitgutter'
NeoBundle 'AndrewRadev/switch.vim'
" >Languages
NeoBundle 'vim-coffee-script'
NeoBundle 'vim-stylus'
"NeoBundle 'derekwyatt/vim-scala'
call neobundle#end()
filetype plugin indent on
NeoBundleCheck