[nvim] Replace Plug with pluginlist context

This commit is contained in:
Alyxia Sother 2021-07-04 12:56:36 +02:00
parent d737803689
commit 1d9f4fd681
No known key found for this signature in database
GPG key ID: 355968D14144B739

View file

@ -1,13 +1,15 @@
let s:ctx = g:dotfiles_plugins_list_context
" Files {{{ " Files {{{
Plug 'weirongxu/coc-explorer' call s:ctx.use('weirongxu/coc-explorer')
" }}} " }}}
" Language specific {{{ " Language specific {{{
Plug 'alaviss/nim.nvim' call s:ctx.use('alaviss/nim.nvim')
" }}} " }}}
" Misc {{{ " Misc {{{
if has('nvim-0.5.0') if has('nvim-0.5.0')
Plug 'andweeb/presence.nvim' call s:ctx.use('andweeb/presence.nvim')
endif endif
" }}} " }}}