diff options
| author | 2026-02-12 18:21:04 +0300 | |
|---|---|---|
| committer | 2026-02-12 18:21:04 +0300 | |
| commit | 529898343aed91872813833b1fa6bdf688cc4b2e (patch) | |
| tree | ddde638184214df1873329539a2f8cc794e2ae12 /config/nvim/lua/plugins/apidocs.lua | |
| parent | nvim lazy upd (diff) | |
| download | dotfiles-529898343aed91872813833b1fa6bdf688cc4b2e.tar.gz dotfiles-529898343aed91872813833b1fa6bdf688cc4b2e.tar.bz2 dotfiles-529898343aed91872813833b1fa6bdf688cc4b2e.tar.xz dotfiles-529898343aed91872813833b1fa6bdf688cc4b2e.zip | |
12.02.2026
Diffstat (limited to '')
| -rw-r--r-- | config/nvim/lua/plugins/apidocs.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config/nvim/lua/plugins/apidocs.lua b/config/nvim/lua/plugins/apidocs.lua index 2727c09..9e76bff 100644 --- a/config/nvim/lua/plugins/apidocs.lua +++ b/config/nvim/lua/plugins/apidocs.lua @@ -4,10 +4,17 @@ return { "nvim-telescope/telescope.nvim", -- or, 'folke/snacks.nvim' }, cmd = { "ApidocsSearch", "ApidocsInstall", "ApidocsOpen", "ApidocsSelect", "ApidocsUninstall" }, + keys = { + { + "<leader>sad", + "<cmd>ApidocsOpen<cr>", + desc = "Search Api Doc", + }, + }, 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, -} +}
\ No newline at end of file |
