From 996219335c231c972b479e94c7cdd810d2047d84 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Tue, 17 Jun 2025 17:07:03 +1000 Subject: [PATCH] refactor(#2826): default lifecycle log off --- doc/nvim-tree-lua.txt | 2 +- lua/nvim-tree.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/nvim-tree-lua.txt b/doc/nvim-tree-lua.txt index 59d1bdca..4859ad87 100644 --- a/doc/nvim-tree-lua.txt +++ b/doc/nvim-tree-lua.txt @@ -649,7 +649,7 @@ Following is the default configuration. See |nvim-tree-opts| for details. >lua dev = false, diagnostics = false, git = false, - lifecycle = true, + lifecycle = false, profile = false, watcher = false, }, diff --git a/lua/nvim-tree.lua b/lua/nvim-tree.lua index 45417db2..f7509d07 100644 --- a/lua/nvim-tree.lua +++ b/lua/nvim-tree.lua @@ -498,7 +498,7 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS dev = false, diagnostics = false, git = false, - lifecycle = true, + lifecycle = false, profile = false, watcher = false, },