From d7542f83501f9847eb459d84970c7e5bdabccaee Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Tue, 7 Jul 2020 08:33:46 -0400 Subject: [PATCH] Bad commit --- wezterm.lua | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 wezterm.lua diff --git a/wezterm.lua b/wezterm.lua deleted file mode 100644 index cc2094c..0000000 --- a/wezterm.lua +++ /dev/null @@ -1,40 +0,0 @@ -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, -}