From 52f1683c7664819508e1d2fc85051d4a20c5d643 Mon Sep 17 00:00:00 2001 From: Julian Visser <12615757+justmejulian@users.noreply.github.com> Date: Fri, 24 Jan 2025 19:51:18 +0100 Subject: [PATCH] doc: add note discouraging lazy loading (#565) * Add disable lazy loading to lazy.nvim install * doc: rephrase --------- Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com> --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5975181..87a825d 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,9 @@ oil.nvim supports all the usual plugin managers opts = {}, -- Optional dependencies dependencies = { { "echasnovski/mini.icons", opts = {} } }, - -- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if prefer nvim-web-devicons + -- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons + -- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations. + lazy = false, } ```