diff --git a/doc/snacks.nvim.txt b/doc/snacks.nvim.txt index 7c2e0e75..bd7227c4 100644 --- a/doc/snacks.nvim.txt +++ b/doc/snacks.nvim.txt @@ -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 = { - { "un", function() Snacks.notifier:hide() end, desc = "Dismiss All Notifications" }, + { "un", function() Snacks.notifier.hide() end, desc = "Dismiss All Notifications" }, { "bd", function() Snacks.bufdelete() end, desc = "Delete Buffer" }, { "gg", function() Snacks.lazygit() end, desc = "Lazygit" }, { "gb", function() Snacks.git.blame_line() end, desc = "Git Blame Line" },