fix(nvim): replace archived plugin with new plugin

This commit is contained in:
Stefan Imhoff
2025-04-29 11:18:28 +02:00
parent 18cf87774f
commit 9bb3b9ff47
3 changed files with 33 additions and 33 deletions

View File

@@ -1,15 +0,0 @@
-- barbecue.nvim
-- https://github.com/utilyre/barbecue.nvim
return {
"utilyre/barbecue.nvim",
name = "barbecue",
version = "*",
dependencies = {
"SmiteshP/nvim-navic",
"nvim-tree/nvim-web-devicons",
},
config = function()
require("barbecue").setup()
require("barbecue.ui").toggle(true)
end,
}

View File

@@ -0,0 +1,15 @@
-- IDE-like breadcrumbs, out of the box
-- https://github.com/Bekaboo/dropbar.nvim
return {
"Bekaboo/dropbar.nvim",
dependencies = {
"nvim-telescope/telescope-fzf-native.nvim",
build = "make",
},
config = function()
local dropbar_api = require("dropbar.api")
vim.keymap.set("n", "<Leader>\\", dropbar_api.pick, { desc = "Pick symbols in winbar" })
vim.keymap.set("n", "[;", dropbar_api.goto_context_start, { desc = "Go to start of current context" })
vim.keymap.set("n", "];", dropbar_api.select_next_context, { desc = "Select next context" })
end,
}