dotfiles/.config/nvim/lua/plugins/extras/ui/breadcrumbs.lua
2023-12-04 00:38:47 +01:00

25 lines
432 B
Lua

if vim.fn.has("nvim-0.10") == 1 then
return {
"Bekaboo/dropbar.nvim",
event = "LazyFile",
opts = {
sources = {
terminal = {
name = "",
},
},
},
}
else
return {
"utilyre/barbecue.nvim",
name = "barbecue",
version = "*",
dependencies = {
"SmiteshP/nvim-navic",
"nvim-tree/nvim-web-devicons",
},
event = "LazyFile",
opts = {},
}
end