copied profile

This commit is contained in:
Peter Wood
2025-04-08 15:31:34 -04:00
parent 59ea35edc7
commit 6c72ecbd48
106 changed files with 9515 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---@module "picker.font"
---@author sravioli, akthe-at
---@license GNU-GPLv3
local Picker = require("utils").class.picker
return Picker.new {
title = "󰢷 Font picker",
subdir = "fonts",
fuzzy = true,
comp = function(a, b)
return (a.id == "reset") or (b.id ~= "reset" and a.label < b.label)
end,
}