From 4e8bf608a8d724f5d2f4a526efe694bea35313c4 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 11 Jan 2025 18:21:47 +0100 Subject: [PATCH] fix(snacks): add to editor.lua --- lua/lazyvim/plugins/editor.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index f6a98605..95a1f7b9 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -397,4 +397,10 @@ return { return LazyVim.pick.want() == "telescope" end, }, + { + import = "lazyvim.plugins.extras.editor.snacks_picker", + enabled = function() + return LazyVim.pick.want() == "snacks" + end, + }, }