mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
24 lines
455 B
Nix
24 lines
455 B
Nix
let
|
|
list = [
|
|
{
|
|
adjustFamily = old: old;
|
|
spacing = "normal";
|
|
}
|
|
|
|
# Iosevka + Ghostty makes "…" display in a odd way.
|
|
# We use "term" width to avoid this.
|
|
# https://github.com/ghostty-org/ghostty/discussions/10335
|
|
{
|
|
adjustFamily = old: old + "Term";
|
|
spacing = "term";
|
|
}
|
|
];
|
|
in
|
|
|
|
map (
|
|
{ adjustFamily, spacing }:
|
|
final: prev: {
|
|
family = adjustFamily prev.family;
|
|
inherit spacing;
|
|
}
|
|
) list
|