chore(build): auto-generate docs

This commit is contained in:
folke 2024-11-06 18:00:11 +00:00 committed by github-actions[bot]
parent a5a2d16390
commit 3a6052dd00

View file

@ -146,13 +146,21 @@ See the example below for how to configure `snacks.nvim`.
---@type snacks.Config
opts = {
bigfile = { enabled = true },
notifier = { enabled = true },
notifier = {
enabled = true,
timeout = 3000,
},
quickfile = { enabled = true },
statuscolumn = { enabled = true },
words = { enabled = true },
styles = {
notification = {
wo = { wrap = true } -- Wrap notifications
}
}
},
keys = {
{ "<leader>un", function() Snacks.notifier:hide() end, desc = "Dismiss All Notifications" },
{ "<leader>un", function() Snacks.notifier.hide() end, desc = "Dismiss All Notifications" },
{ "<leader>bd", function() Snacks.bufdelete() end, desc = "Delete Buffer" },
{ "<leader>gg", function() Snacks.lazygit() end, desc = "Lazygit" },
{ "<leader>gb", function() Snacks.git.blame_line() end, desc = "Git Blame Line" },