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,15 @@
---@module "picker.font-leading"
---@author akthe-at
---@license GNU-GPLv3
local Picker = require("utils").class.picker
return Picker.new {
title = "󰢷 Font leading",
subdir = "font-leadings",
fuzzy = false,
comp = function(a, b)
local label = "Reset Line Height to Default"
return (a.label == label) or (b.label ~= label and a.label < b.label)
end,
}