blob: 2727c096c46e1919c534067c2535d1b86e962daa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
return {
"emmanueltouzery/apidocs.nvim",
dependencies = {
"nvim-telescope/telescope.nvim", -- or, 'folke/snacks.nvim'
},
cmd = { "ApidocsSearch", "ApidocsInstall", "ApidocsOpen", "ApidocsSelect", "ApidocsUninstall" },
config = function()
require("apidocs").setup()
-- Picker will be auto-detected. To select a picker of your choice explicitly you can set picker by the configuration option 'picker':
-- require('apidocs').setup({picker = "snacks"})
-- Possible options are 'ui_select', 'telescope', and 'snacks'
end,
}
|