dotfiles/nvim/dotfiles/plugins-list.vim

20 lines
470 B
VimL
Raw Normal View History

let s:ctx = g:dotfiles_plugins_list_context
2021-06-28 15:38:18 +00:00
" Files {{{
call s:ctx.use('preservim/nerdtree')
call s:ctx.use('kyazdani42/nvim-web-devicons')
call s:ctx.use('romgrk/barbar.nvim')
2021-06-28 15:38:18 +00:00
" }}}
" Language specific {{{
call s:ctx.use('alaviss/nim.nvim')
2021-06-28 15:38:18 +00:00
" }}}
2021-07-03 10:45:22 +00:00
" Misc {{{
2021-07-04 18:16:40 +00:00
call s:ctx.use('glacambre/firenvim', { 'do': ':call firenvim#install(0)' })
2021-07-04 17:30:48 +00:00
call s:ctx.use('glepnir/dashboard-nvim')
2021-07-03 10:45:22 +00:00
if has('nvim-0.5.0')
call s:ctx.use('andweeb/presence.nvim')
2021-07-03 10:45:22 +00:00
endif
" }}}