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,61 @@
---@module "picker.assets.fonts.ubuntu-mono-nf"
---@author sravioli, akthe-at
---@license GNU-GPLv3
---@class PickList
local M = {}
local wt = require "wezterm"
M.get = function()
return { id = "ubuntu-mono-nf", label = "Ubuntu Mono Nerd Font" }
end
M.activate = function(Config, _)
Config.font = wt.font_with_fallback {
{
family = "UbuntuMono Nerd Font",
weight = "Regular",
harfbuzz_features = {
"cv06",
"cv12",
"cv14",
"cv16",
"cv25",
"cv26",
"cv28",
"cv29",
"cv31",
"cv32",
"ss03",
"ss04",
"ss05",
"ss07",
"ss09",
},
},
{ family = "Noto Color Emoji" },
{ family = "LegacyComputing" },
}
Config.cell_width = 0.9
Config.font_rules = {
{
intensity = "Normal",
italic = true,
font = wt.font("Monaspace Radon", { weight = "Regular" }),
},
{
intensity = "Bold",
italic = false,
font = wt.font("Monaspace Neon", { weight = "ExtraBold" }),
},
{
intensity = "Bold",
italic = true,
font = wt.font("Monaspace Radon", { weight = "ExtraBold" }),
},
}
end
return M