You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
1.0 KiB

return {
--------------------------------------------------------------------------------
-- Dependencies
--------------------------------------------------------------------------------
----------------------------------------------------------------------------
-- Denops - Provides for deno/js-based plugins
--
{ name = 'vim-denops/denops.vim', requires = { 'deno' }, config = { branch = 'main' } },
----------------------------------------------------------------------------
-- Asyncrun - Run shell commands and stream their output into a window
--
-- Usually vim waits for the command to finish and then opens the window and
-- shows the output which doesn't provide a great experience for anything
-- that takes more than a second to run. This works around that.
--
{ name = 'skywind3000/asyncrun.vim' },
----------------------------------------------------------------------------
-- Plenary - A bunch of utility functions
--
-- This is depended on by a bunch of other plugins.
--
{ name = 'nvim-lua/plenary.nvim' },
}