17 lines
302 B
Lua
17 lines
302 B
Lua
-- for context breadcrumb
|
|
return {
|
|
"utilyre/barbecue.nvim",
|
|
name = "barbecue",
|
|
version = "*",
|
|
dependencies = {
|
|
"SmiteshP/nvim-navic",
|
|
"nvim-tree/nvim-web-devicons", -- optional dependency
|
|
},
|
|
opts = {
|
|
-- configurations go here
|
|
},
|
|
config = function ()
|
|
require('barbecue').setup {}
|
|
end
|
|
}
|