telescope-frecency.nvim/lua/frecency/web_devicons.lua
2024-08-28 14:25:59 +09:00

18 lines
375 B
Lua

---@class FrecencyWebDevicons
local M = {
---@param name string?
---@param ext string?
---@param opts table?
---@return string
---@return string
get_icon = function(name, ext, opts)
local ok, web_devicons = pcall(require, "nvim-web-devicons", opts)
if not ok then
return "", ""
end
return web_devicons.get_icon(name, ext)
end,
}
return M