diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua new file mode 100644 index 0000000..cc2094c --- /dev/null +++ b/wezterm/wezterm.lua @@ -0,0 +1,40 @@ +local wezterm = require 'wezterm'; + +function font_with_fallback(name, params) + local names = {name, "Noto Color Emoji", "JetBrains Mono"} + return wezterm.font_with_fallback(names,params) +end + +return { + -- font stuff + font = font_with_fallback("Iosevka Custom Light"), + font_rules = { + { + italic = true, + font = font_with_fallback("Dank Mono Italic"), + }, + }, + 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, +}