mirror of
https://github.com/acedanger/dotfiles.git
synced 2025-12-05 22:30:13 -08:00
copied profile
This commit is contained in:
15
wezterm/.config/picker/font-leading.lua
Normal file
15
wezterm/.config/picker/font-leading.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user