Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 760 Bytes

how-to-guides.mdx

File metadata and controls

25 lines (22 loc) · 760 Bytes
title description
How-to guides
A list of common customizations, tutorials and guides for mastering Better Vim.

Setting custom icons

If you want to set custom icons for elements like tabs, file explorer, file finder, etc, just add this following config to the entry hooks.after_setup in better-vim.lua file:

return {
  hooks = {
    after_setup = function()
      require("nvim-web-devicons").set_icon {
        res = {
          icon = "",
          color = "#e6484f",
          name = "ReScript"
        }
      }
    end,
  },
}

Since we're using nvim-web-devicons as our icons plugin, you can see more about custom icons on its official documentation.