Чт 19 июн 2025 02:57:51 MSK

This commit is contained in:
Alexander Neonxp Kiryukhin 2025-06-19 02:57:51 +03:00
parent a45c845978
commit 26341d565a
Signed by: NeonXP
SSH key fingerprint: SHA256:SVt7TjxbVc87m1QYaQziOJ0N3OCFURv2g76gD/UTTXI
10 changed files with 162 additions and 16 deletions

View file

@ -0,0 +1,16 @@
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,
keys = {
{ "<leader>sad", "<cmd>ApidocsOpen<cr>", desc = "Search Api Doc" },
},
}