fighting fonts
This commit is contained in:
parent
bac5ba3b13
commit
89ece168e9
3 changed files with 51 additions and 43 deletions
|
@ -19,7 +19,7 @@ font:
|
||||||
family: Iosevka SS15
|
family: Iosevka SS15
|
||||||
style: Extralight Italic
|
style: Extralight Italic
|
||||||
|
|
||||||
size: 12.5
|
size: 10
|
||||||
|
|
||||||
offset:
|
offset:
|
||||||
x: 0
|
x: 0
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
<family>Noto Color Emoji</family>
|
<family>Noto Color Emoji</family>
|
||||||
</prefer>
|
</prefer>
|
||||||
</alias>
|
</alias>
|
||||||
|
<!--
|
||||||
<dir>~/.fonts</dir>
|
<dir>~/.fonts</dir>
|
||||||
<match target="font">
|
<match target="font">
|
||||||
<edit mode="assign" name="hinting">
|
<edit mode="assign" name="hinting">
|
||||||
|
@ -30,4 +31,5 @@
|
||||||
<const>hintmedium</const>
|
<const>hintmedium</const>
|
||||||
</edit>
|
</edit>
|
||||||
</match>
|
</match>
|
||||||
|
-->
|
||||||
</fontconfig>
|
</fontconfig>
|
||||||
|
|
|
@ -21,6 +21,53 @@ local theme = {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
colors = theme.colors,
|
colors = theme.colors,
|
||||||
|
font = font_with_fallback("Iosevka Shelman SS09", { weight = "Regular" }),
|
||||||
|
font_rules = {
|
||||||
|
{
|
||||||
|
italic = false,
|
||||||
|
intensity = "Half",
|
||||||
|
font = font_with_fallback("Iosevka Shelman SS09", { weight = "Thin" }),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
italic = true,
|
||||||
|
intensity = "Normal",
|
||||||
|
font = font_with_fallback("Iosevka Shelman Curly Slab", { weight = "Light", italic = true }),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
italic = true,
|
||||||
|
intensity = "Bold",
|
||||||
|
font = font_with_fallback("Iosevka Shelman SS15", { weight = "ExtraLight", italic = true }),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
intensity = "Bold",
|
||||||
|
font = font_with_fallback("Iosevka Shelman SS09", { weight = "DemiBold" }),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
freetype_load_target = "Light",
|
||||||
|
freetype_render_target = "HorizontalLcd",
|
||||||
|
--freetype_load_flags = "NO_HINTING",
|
||||||
|
--custom_block_glyphs = false,
|
||||||
|
|
||||||
|
warn_about_missing_glyphs = false,
|
||||||
|
bold_brightens_ansi_colors = false,
|
||||||
|
allow_square_glyphs_to_overflow_width = "Always",
|
||||||
|
|
||||||
|
font_size = 10,
|
||||||
|
line_height = 1.0,
|
||||||
|
cell_width = 0.9,
|
||||||
|
|
||||||
|
initial_cols = 128,
|
||||||
|
initial_rows = 45,
|
||||||
|
use_resize_increments = true,
|
||||||
|
|
||||||
|
window_background_opacity = 0.93,
|
||||||
|
-- window_padding = {
|
||||||
|
-- left = "0.75cell",
|
||||||
|
-- right = "0.5cell",
|
||||||
|
-- top = "0.5cell",
|
||||||
|
-- bottom = "0cell",
|
||||||
|
-- },
|
||||||
|
window_decorations = "RESIZE",
|
||||||
window_frame = {
|
window_frame = {
|
||||||
border_left_width = "2px",
|
border_left_width = "2px",
|
||||||
border_right_width = "2px",
|
border_right_width = "2px",
|
||||||
|
@ -31,46 +78,6 @@ return {
|
||||||
border_bottom_color = "#cccccc",
|
border_bottom_color = "#cccccc",
|
||||||
border_top_color = "#cccccc",
|
border_top_color = "#cccccc",
|
||||||
},
|
},
|
||||||
font = font_with_fallback("Iosevka Term SS09", { weight = "Regular" }),
|
|
||||||
font_rules = {
|
|
||||||
{
|
|
||||||
italic = false,
|
|
||||||
intensity = "Half",
|
|
||||||
font = font_with_fallback("Iosevka Term SS09", { weight = "Thin" }),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
italic = true,
|
|
||||||
intensity = "Normal",
|
|
||||||
font = font_with_fallback("Iosevka Term Curly Slab", { weight = "Light", italic = true }),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
italic = true,
|
|
||||||
intensity = "Bold",
|
|
||||||
font = font_with_fallback("Iosevka SS15", { weight = "ExtraLight", italic = true }),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
intensity = "Bold",
|
|
||||||
font = font_with_fallback("Iosevka Term SS09", { weight = "DemiBold" }),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
freetype_load_target = "Light",
|
|
||||||
warn_about_missing_glyphs = false,
|
|
||||||
bold_brightens_ansi_colors = false,
|
|
||||||
|
|
||||||
font_size = 10.5,
|
|
||||||
line_height = 1.1,
|
|
||||||
|
|
||||||
initial_cols = 128,
|
|
||||||
initial_rows = 45,
|
|
||||||
use_resize_increments = true,
|
|
||||||
|
|
||||||
window_background_opacity = 0.93,
|
|
||||||
window_padding = {
|
|
||||||
left = "0.75cell",
|
|
||||||
right = "0.5cell",
|
|
||||||
top = "0.5cell",
|
|
||||||
bottom = "0cell",
|
|
||||||
},
|
|
||||||
|
|
||||||
default_cursor_style = "SteadyBlock",
|
default_cursor_style = "SteadyBlock",
|
||||||
cursor_thickness = "3px",
|
cursor_thickness = "3px",
|
||||||
|
@ -81,7 +88,6 @@ return {
|
||||||
tab_bar_at_bottom = true,
|
tab_bar_at_bottom = true,
|
||||||
show_tab_index_in_tab_bar = true,
|
show_tab_index_in_tab_bar = true,
|
||||||
enable_scroll_bar = false,
|
enable_scroll_bar = false,
|
||||||
window_decorations = "RESIZE",
|
|
||||||
scrollback_lines = 5000,
|
scrollback_lines = 5000,
|
||||||
alternate_buffer_wheel_scroll_speed = 2,
|
alternate_buffer_wheel_scroll_speed = 2,
|
||||||
check_for_updates = false,
|
check_for_updates = false,
|
||||||
|
|
Loading…
Reference in a new issue