dotfiles/.config/nvim/lua/plugins/extras/editor/breadcrumbs.lua
Sergio Laín e457722492
📁 files(nvim): changes to the directories and extras
another bug change to the structure of the nvim config. probably, tomorrow will be finished
2023-10-25 12:38:42 +02:00

27 lines
513 B
Lua

return {
{
"Bekaboo/dropbar.nvim", -- NOTE: NVIM >= 10.0
event = "BufRead",
opts = {
sources = {
terminal = {
name = "",
},
},
},
},
{
"utilyre/barbecue.nvim", -- NOTE: NVIM < 10.0
name = "barbecue",
version = "*",
dependencies = {
"SmiteshP/nvim-navic",
"nvim-tree/nvim-web-devicons", -- optional dependency
},
event = "BufRead",
enabled = false,
opts = {
theme = "catppuccin-macchiato",
},
},
}