wezterm: cleaning up the typography
This commit is contained in:
parent
7826d193f6
commit
2df6c93955
2 changed files with 13 additions and 9 deletions
|
@ -17,26 +17,26 @@ return {
|
||||||
color_scheme_dirs = {
|
color_scheme_dirs = {
|
||||||
os.getenv("HOME") .. "/.config/shelman-theme/current/wezterm",
|
os.getenv("HOME") .. "/.config/shelman-theme/current/wezterm",
|
||||||
},
|
},
|
||||||
font = font_with_fallback("Iosevka Shelman SS09", { weight = "Regular" }),
|
font = font_with_fallback("Iosevka Term SS09", { weight = "Light" }),
|
||||||
font_rules = {
|
font_rules = {
|
||||||
{
|
{
|
||||||
italic = false,
|
italic = false,
|
||||||
intensity = "Half",
|
intensity = "Half",
|
||||||
font = font_with_fallback("Iosevka Shelman SS09", { weight = "Thin" }),
|
font = font_with_fallback("Iosevka Term SS09", { weight = "Thin" }),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
intensity = "Normal",
|
intensity = "Normal",
|
||||||
font = font_with_fallback("Iosevka Shelman Curly Slab", { weight = "Light", italic = true }),
|
font = font_with_fallback("Iosevka Term Curly Slab", { weight = "Light", italic = true }),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
intensity = "Bold",
|
intensity = "Bold",
|
||||||
font = font_with_fallback("Iosevka Shelman SS15", { weight = "ExtraLight", italic = true }),
|
font = font_with_fallback("Iosevka Term SS15", { weight = "ExtraLight", italic = true }),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
intensity = "Bold",
|
intensity = "Bold",
|
||||||
font = font_with_fallback("Iosevka Shelman SS09", { weight = "DemiBold" }),
|
font = font_with_fallback("Iosevka Term SS09", { weight = "DemiBold" }),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
front_end = "WebGpu",
|
front_end = "WebGpu",
|
||||||
|
@ -46,13 +46,18 @@ return {
|
||||||
allow_square_glyphs_to_overflow_width = "Always",
|
allow_square_glyphs_to_overflow_width = "Always",
|
||||||
font_size = 13.5,
|
font_size = 13.5,
|
||||||
command_palette_font_size = 13.5,
|
command_palette_font_size = 13.5,
|
||||||
line_height = 1.0,
|
line_height = 1.065,
|
||||||
cell_width = 0.95,
|
|
||||||
initial_cols = 132,
|
initial_cols = 132,
|
||||||
initial_rows = 45,
|
initial_rows = 45,
|
||||||
use_resize_increments = true,
|
use_resize_increments = true,
|
||||||
window_decorations = "RESIZE",
|
window_decorations = "RESIZE",
|
||||||
window_background_opacity = 1.0,
|
window_background_opacity = 1.0,
|
||||||
|
window_padding = {
|
||||||
|
left = 0,
|
||||||
|
right = 0,
|
||||||
|
top = 0,
|
||||||
|
bottom = 0,
|
||||||
|
},
|
||||||
colors = {
|
colors = {
|
||||||
tab_bar = {
|
tab_bar = {
|
||||||
active_tab = {
|
active_tab = {
|
||||||
|
|
|
@ -7,5 +7,4 @@ TryExec=/usr/bin/wezterm
|
||||||
Icon=org.wezfurlong.wezterm
|
Icon=org.wezfurlong.wezterm
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=System;TerminalEmulator;
|
Categories=System;TerminalEmulator;
|
||||||
Exec=/usr/bin/wezterm --config 'default_prog={"tmux", "-u", "new", "-As0"}' start
|
Exec=/usr/bin/wezterm --config 'default_prog={"tmux", "-u", "new", "-As0"}' start --class=wezterm-local
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue