-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc.plugin
80 lines (61 loc) · 2.33 KB
/
.vimrc.plugin
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
80
filetype off
set runtimepath+=~/.vim,$VIM/vimfiles,$VIMRUNTIME,/usr/local/Cellar/vim/8.0.0019/share/vim/vim80,~/.vim/bundle/neobundle.vim
call neobundle#begin(expand('~/.vim/bundle'))
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'github/copilot.vim'
NeoBundle 'kaicataldo/material.vim'
NeoBundle 'Shougo/neosnippet.vim'
NeoBundle 'Shougo/neosnippet-snippets'
" NeoBundle 'Shougo/vimproc.vim', {'build' : { 'mac' : 'make' } }
if has('nvim')
NeoBundle 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
else
NeoBundle 'Shougo/neocomplete.vim'
endif
" NeoBundle 'SirVer/ultisnips'
"NeoBundle 'honza/vim-snippets'
NeoBundle 'junegunn/fzf'
NeoBundle 'tpope/vim-fugitive'
" NeoBundle 'Valloric/MatchTagAlways', {'filetypes': ['html', 'xml', 'xhtml']}
NeoBundle 'moll/vim-bbye'
NeoBundle 'tpope/vim-commentary'
" Coding
NeoBundle 'editorconfig/editorconfig-vim'
NeoBundleLazy 'mattn/emmet-vim', {'filetypes': ['html']}
NeoBundleLazy 'simnalamburt/vim-mundo'
" Nav
" NeoBundle 'easymotion/vim-easymotion'
NeoBundle 'jlanzarotta/bufexplorer'
" NeoBundle 'numkil/ag.nvim'
" Themes
NeoBundle 'vim-airline/vim-airline'
NeoBundle 'vim-airline/vim-airline-themes'
" Editing
NeoBundle 'junegunn/vim-easy-align'
NeoBundle 'tpope/vim-surround'
NeoBundle 'tpope/vim-repeat'
NeoBundle 'rhysd/conflict-marker.vim'
NeoBundle 'jiangmiao/auto-pairs'
" NeoBundle 'godlygeek/tabular'
NeoBundleLazy 'elzr/vim-json', {'filetypes': ['json']}
" NeoBundle 'terryma/vim-multiple-cursors'
" Others
" NeoBundle 'gioele/vim-autoswap'
NeoBundle 'xolox/vim-misc'
NeoBundle 'xolox/vim-session'
NeoBundle 'powerline/fonts'
NeoBundle 'airblade/vim-gitgutter'
NeoBundle 'osyo-manga/vim-over'
" NeoBundle 'kana/vim-textobj-user'
" NeoBundle 'kana/vim-textobj-indent'
NeoBundleLazy 'groenewege/vim-less', {'filetypes': ['less']}
" NeoBundle 'neomake/neomake'
" Javascript
NeoBundleLazy 'pangloss/vim-javascript', {'filetypes': ['javascript']}
NeoBundle 'leafgarland/typescript-vim', {'filetypes': ['typescript']}
NeoBundleLazy 'posva/vim-vue', {'filetypes': ['vue']}
NeoBundleLazy 'mxw/vim-jsx', {'filetypes': ['javascript']}
" NeoBundleLazy 'kchmck/vim-coffee-script', {'filetypes': ['coffeescript']}
call neobundle#end()
filetype plugin indent on
NeoBundleCheck