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