Skip to content

Instantly share code, notes, and snippets.

@luxus
Created March 10, 2023 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luxus/5631d31acd3176baa6bd5b56549d8eb5 to your computer and use it in GitHub Desktop.
Save luxus/5631d31acd3176baa6bd5b56549d8eb5 to your computer and use it in GitHub Desktop.
local font = {
family = "MonoLisa",
bold = "Medium",
weight = "Regular",
boldItalic = "Medium Italic",
italic = "Regular Italic",
}
return {
enable_csi_u_key_encoding = true,
window_padding = {
left = 5,
right = 5,
top = 5,
bottom = 5,
},
audible_bell = "Disabled",
visual_bell = {
target = "CursorColor",
fade_in_function = "EaseIn",
fade_in_duration_ms = 150,
fade_out_function = "EaseOut",
fade_out_duration_ms = 150,
},
cursor_blink_ease_in = "Linear",
cursor_blink_ease_out = "Linear",
default_cursor_style = "BlinkingBlock",
cursor_blink_rate = 800,
detect_password_input = true,
window_decorations = "RESIZE",
color_scheme = "everforest",
hide_tab_bar_if_only_one_tab = true,
font = font_with_fallback({
family = font.family,
weight = font.weight,
harfbuzz_features = { "zero" },
}),
font_rules = {
{
intensity = "Bold",
font = font_with_fallback({
family = font.family,
weight = font.bold,
harfbuzz_features = { "zero" },
}),
},
{
italic = true,
intensity = "Bold",
font = font_with_fallback({
family = font.family,
italic = true,
weight = font.bold,
harfbuzz_features = { "ss02", "zero" },
}),
},
{
italic = true,
font = font_with_fallback({
family = font.family,
italic = true,
weight = font.weight,
harfbuzz_features = { "ss02" },
}),
},
},
selection_word_boundary = " \t\n{}[]()\"'`,;:@",
term = "xterm-256color",
font_size = 13.0,
window_background_opacity = 1,
bold_brightens_ansi_colors = false,
front_end = "WebGpu",
-- tab_bar_at_bottom = true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment