Created
April 21, 2022 18:11
-
-
Save bfagundez/4b007caaed270c1db1c2ec722a805734 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local wezterm = require 'wezterm' | |
return { | |
enable_tab_bar = false, | |
enable_scrollbar = false, | |
color_scheme = "Broadcast", | |
font = wezterm.font_with_fallback({ | |
"Iosevka", | |
"Symbols Nerd Font Mono" | |
}), | |
font_rules = { | |
-- Define a rule that matches when italic text is shown | |
{ | |
italic = true, | |
-- When the above attributes match, apply this font styling | |
font = wezterm.font("Operator Mono", {italic=true,weight="Light"}), | |
--font = wezterm.font("Iosevka", {italic=true}), | |
--font = wezterm.font("Iosevka Term", {italic=true, light=true}), | |
} | |
}, | |
font_size = 16.5, | |
window_padding = { | |
left = 0, | |
right = 0, | |
top = 0, | |
bottom = 0 | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment