utilyre / barbecue.nvim

Visual Studio Code inspired breadcrumbs plugin for the Neovim editor
MIT License
776 stars 31 forks source link

[BUG]: Dev Icons don't show up #77

Closed cs-clarence closed 1 year ago

cs-clarence commented 1 year ago

Requirements

Expected Behavior

Winbar to show icons

Actual Behavior

Winbar only shows rectangles in place of icons

image

Neovim Version

0.8.3

Minimal Configuration

return {
  {
    "utilyre/barbecue.nvim",
    dependencies = {
      "SmiteshP/nvim-navic",
      "nvim-tree/nvim-web-devicons", -- optional dependency
    },
    config = function()
      local ok, barbecue = pcall(require, "barbecue")

      if not ok then
        vim.notify("barbecue.nvim not installed", vim.log.levels.ERROR)
        return
      end

      barbecue.setup({})
    end,
  },
}

Reproduction

install

utilyre commented 1 year ago

Use a font that is patched with codicons or change the kinds in your config to the nerd icons that your font already supports.