feat(wezterm): initial commit

The initial release of the rootiest-wezterm config

BREAKING CHANGE: First Commit!
This commit is contained in:
2024-08-16 14:50:01 -04:00
commit 35ec6f0de6
13 changed files with 517 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
-- ╭─────────────────────────────────────────────────────────╮
-- │ FONTS │
-- ╰─────────────────────────────────────────────────────────╯
return {
-- Terminal Font
font = WEZTERM.font({
family = "Iosevka",
weight = "Regular",
harfbuzz_features = {
"VSAH=7",
"VSAF=3",
"VSAI=3",
"VSAJ=8",
"VSAM=4",
"VLAB=5",
"cv10=7",
"cv41=3",
"cv44=6",
"cv07=4",
},
}),
font_size = 12.0,
-- Fancy Tab Bar Font
window_frame = {
font = WEZTERM.font({
family = "Iosevka",
weight = "Medium",
harfbuzz_features = {
"VSAH=7",
"VSAF=3",
"VSAI=3",
"VSAJ=8",
"VSAM=4",
"VLAB=5",
"cv10=7",
"cv41=3",
"cv44=6",
"cv07=4",
},
}),
font_size = 11,
},
-- Cursor Shape
default_cursor_style = "BlinkingBar",
}