mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] Replace Plug with pluginlist context
This commit is contained in:
parent
d737803689
commit
1d9f4fd681
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||||
" }}}
|
" }}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue