-
Notifications
You must be signed in to change notification settings - Fork 82
/
unused_plugins
39 lines (34 loc) · 1.23 KB
/
unused_plugins
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
" vim:ft=vim
" this is just a placeholder for plugins i've encountered, maybe used at some
" point, but not any longer
finish
NeoBundleLazy 'teramako/jscomplete-vim', {'autoload':{'filetypes':['javascript']}} "{{{
autocmd FileType javascript setlocal omnifunc=jscomplete#CompleteJS
"}}}
NeoBundle 'Shougo/vimfiler.vim' "{{{
let g:vimfiler_as_default_explorer=1
let g:vimfiler_data_directory='~/.vim/.cache/vimfiler'
nnoremap <F2> :VimFilerExplorer<CR>
nnoremap <F3> :VimFilerBufferDir --explorer<CR>
"}}}
NeoBundle 'Yggdroot/indentLine' "{{{
let g:indentLine_char = '┊'
let g:indentLine_color_term=236
"}}}
NeoBundle 'Lokaltog/vim-powerline' "{{{
let g:Powerline_symbols = 'unicode'
"}}}
NeoBundle 'Lokaltog/powerline', { 'rtp': 'powerline/bindings/vim' }
NeoBundle 'zhaocai/linepower.vim'
NeoBundle 'myusuf3/numbers.vim', { 'gui': 1 }
NeoBundle 'sjl/splice.vim'
NeoBundleLazy 'roman/golden-ratio', {'autoload':{'commands':'GoldenRatioToggle'}} "{{{
let g:golden_ratio_autocommand=0
let g:golden_ratio_wrap_ignored=0
nnoremap <F4> :GoldenRatioToggle<cr>
"}}}
NeoBundle 'Raimondi/delimitMate' "{{{
let g:delimitMate_expand_cr=1
autocmd FileType markdown,vim let b:loaded_delimitMate=1
"}}}
NeoBundle 'kshenoy/vim-signature'