diff --git a/README.vim.md b/README.vim.md index a591e23..4b4ee76 100644 --- a/README.vim.md +++ b/README.vim.md @@ -457,9 +457,7 @@ When `[2]` is `nil`, then the real mapping has to be created by the `config()` f keys = { { "ft", "Neotree toggle", desc = "NeoTree" }, }, - config = function() - require("neo-tree").setup() - end, + opts = {}, } ``` diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 7722a40..68bbee4 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -540,9 +540,7 @@ function. keys = { { "ft", "Neotree toggle", desc = "NeoTree" }, }, - config = function() - require("neo-tree").setup() - end, + opts = {}, } <