diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index caee52f..4e6f21d 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -374,6 +374,7 @@ CONFIGURATION *lazy.nvim-configuration* ui = { -- a number <1 is a percentage., >1 is a fixed size size = { width = 0.8, height = 0.8 }, + wrap = true, -- wrap the lines in the ui -- The border to use for the UI window. Accepts same border values as |nvim_open_win()|. border = "none", icons = { @@ -482,6 +483,7 @@ CONFIGURATION *lazy.nvim-configuration* -- only generate markdown helptags for plugins that dont have docs skip_if_doc_exists = true, }, + state = vim.fn.stdpath("state") .. "/lazy/state.json", -- state info for checker and other things } <