Skip to content

Instantly share code, notes, and snippets.

@bfagundez
Created April 21, 2022 18:11
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 bfagundez/4b007caaed270c1db1c2ec722a805734 to your computer and use it in GitHub Desktop.
Save bfagundez/4b007caaed270c1db1c2ec722a805734 to your computer and use it in GitHub Desktop.
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