42 lines
1.3 KiB
Lua
42 lines
1.3 KiB
Lua
local wezterm = require 'wezterm';
|
|
|
|
function font_with_fallback(name, params)
|
|
local names = {name, "Iosevka Custom", "Noto Color Emoji", "JetBrains Mono"}
|
|
return wezterm.font_with_fallback(names,params)
|
|
end
|
|
|
|
return {
|
|
-- font stuff
|
|
-- font = font_with_fallback("Iosevka Custom"),
|
|
font = font_with_fallback("Iosevka Custom"),
|
|
font_shaper = "Allsorts",
|
|
font_rules = {
|
|
{
|
|
italic = true,
|
|
font = font_with_fallback("Dank Mono", {italic=true}),
|
|
},
|
|
},
|
|
font_size = 14.0,
|
|
font_antialias = "Subpixel",
|
|
font_hinting = "Full",
|
|
|
|
-- TERM name
|
|
term = "xterm-256color",
|
|
|
|
-- Color Scheme(s)
|
|
color_scheme = "Corvine",
|
|
color_schemes = {
|
|
["Corvine"] = {
|
|
background = "#262626",
|
|
foreground = "#c6c6c6",
|
|
-- ansi = {"black", "maroon", "green", "olive", "navy", "purple", "teal", "silver"},
|
|
-- brights = {"grey", "red", "lime", "yellow", "blue", "fuchsia", "aqua", "white"},
|
|
ansi = {"#3a3a3a", "#d7d7d7", "#87af5f", "#d7d7af", "#87afd7", "#afafd7", "#87d7d7", "#c6c6c6"},
|
|
brights = {"#626262", "#ffafaf", "#afd787", "#d7d787", "#87d7ff", "#d7afd7", "#5fd7d7", "#eeeeee"}
|
|
},
|
|
},
|
|
|
|
-- Tab Bar
|
|
enable_tab_bar = true,
|
|
hide_tab_bar_if_only_one_tab = true,
|
|
}
|