From 39d1956216491215c49664d9aa1f7bffcffb4b2d Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Wed, 30 Jul 2025 14:10:32 +0500 Subject: [PATCH] remove fuzze search in neotree --- .config/nvim/lua/user/plugins/neotree.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/user/plugins/neotree.lua b/.config/nvim/lua/user/plugins/neotree.lua index a14e25c..d2de9ff 100644 --- a/.config/nvim/lua/user/plugins/neotree.lua +++ b/.config/nvim/lua/user/plugins/neotree.lua @@ -8,6 +8,14 @@ return { }, event = "VeryLazy", opts = { + filesystem = { + window = { + mappings = { + -- disable fuzzy finder + ["/"] = "noop" + } + } + }, enable_diagnostics = false, enable_git_status = true, default_component_configs = { @@ -88,5 +96,5 @@ return { end }, }, - } + }, }