32 lines
673 B
Lua

-- Display LSP-based breadcrumbs
return {
-- https://github.com/utilyre/barbecue.nvim
"utilyre/barbecue.nvim",
name = "barbecue",
version = "*",
dependencies = {
-- https://github.com/SmiteshP/nvim-navic
"SmiteshP/nvim-navic",
-- https://github.com/nvim-tree/nvim-web-devicons
"nvim-tree/nvim-web-devicons", -- optional dependency
},
opts = {
---@type boolean
show_dirname = false,
---@type boolean
show_basename = false,
symbols = {
---Modification indicator.
---@type string
modified = "",
---Truncation indicator.
---@type string
ellipsis = "",
---Entry separator.
---@type string
separator = "",
},
},
}