From 8e667335519cfb45cbcc57ec51c974f072f13115 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 449ac2b7..72e7ec75 100644 --- a/lua/nvim-tree.lua +++ b/lua/nvim-tree.lua @@ -496,7 +496,7 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS dev = false, diagnostics = false, git = false, - lifecycle = true, + lifecycle = false, profile = false, watcher = false, },