mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
16 lines
324 B
Lua
16 lines
324 B
Lua
-- 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,
|
|
}
|