dotfiles/.config/nvim/lua/plugins/extras/ui/breadcrumbs.lua
Sergio Laín c2e92f0ef5
♻️ refactor(nvim): a lot of changes to the structure of the config
moved extras, mason and tressitter packages, and some new extras for web dev
2023-11-15 12:46:38 +01:00

33 lines
582 B
Lua

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