From c6000303ea8b60aae354bd142102a9a7f34b0f55 Mon Sep 17 00:00:00 2001 From: Rubin Bhandari Date: Sun, 19 May 2024 15:29:16 +0545 Subject: [PATCH] feat: add dropbar for vscode still breadcrumbs --- lua/lazyvim/plugins/extras/editor/dropbar.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/lazyvim/plugins/extras/editor/dropbar.lua diff --git a/lua/lazyvim/plugins/extras/editor/dropbar.lua b/lua/lazyvim/plugins/extras/editor/dropbar.lua new file mode 100644 index 00000000..1adabcdd --- /dev/null +++ b/lua/lazyvim/plugins/extras/editor/dropbar.lua @@ -0,0 +1,10 @@ +return { + { + "Bekaboo/dropbar.nvim", + event = { "BufReadPre", "BufNewFile" }, + dependencies = { + "nvim-telescope/telescope-fzf-native.nvim", + }, + config = {}, + }, +}