Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 22, 2023
1 parent 19e7ba2 commit 8d153fd
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions doc/which-key.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*which-key.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 May 11
*which-key.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 May 22

==============================================================================
Table of Contents *which-key.nvim-table-of-contents*
Expand Down Expand Up @@ -51,20 +51,19 @@ Install the plugin with your preferred package manager:
LAZY.NVIM ~

>lua
require("lazy").setup({
{
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup({
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
})
end,
},
})
{
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
}
<


Expand Down

0 comments on commit 8d153fd

Please sign in to comment.