[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
1 changed files with 5 additions and 3 deletions

View File

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