Files
dotfiles/wezterm/.config/picker/font-leading.lua
2025-04-08 15:31:34 -04:00

16 lines
375 B
Lua

---@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,
}