Last active
January 20, 2020 13:07
-
-
Save calorie/fc8ffd18a8b9e74229ced772d0d617ae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call dein#add('thinca/vim-ref', { | |
\ 'lazy': 1, | |
\ 'on_map': ['<Plug>(ref-keyword)'], | |
\ 'hook_add': 'source ' . s:plugins_dir . '/.nvimrc.vim-ref.preload', | |
\ 'hook_source': 'source ' . s:plugins_dir . '/.nvimrc.vim-ref', | |
\ }) | |
call dein#add('yuku/vim-ref-ri', { | |
\ 'lazy': 1, | |
\ 'depends': 'vim-ref', | |
\ 'on_ft': [ | |
\ 'ruby', 'eruby' | |
\ ], | |
\ }) | |
call dein#add('Shougo/unite.vim', { | |
\ 'lazy': 1, | |
\ 'on_cmd': [ | |
\ 'Unite', 'UniteBookmarkAdd', 'UniteWithBufferDir', | |
\ 'UniteWithCurrentDir', 'UniteWithCursorWord', | |
\ ], | |
\ 'hook_add': 'source ' . s:plugins_dir . '/.nvimrc.unite.preload', | |
\ 'hook_source': 'source ' . s:plugins_dir . '/.nvimrc.unite', | |
\ 'depends': ['neomru.vim'], | |
\ }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment