Update file structure

This commit is contained in:
april
2024-01-24 09:27:27 -06:00
parent 334926f8f4
commit 1ce8565110
2 changed files with 40 additions and 37 deletions

View File

@@ -30,45 +30,47 @@ config.warn_about_missing_glyphs=false
-- config.color_scheme = 'Catppuccin Mocha'
config.color_scheme = "Gigavolt (base16)"
config.font = wezterm.font({
family='MonaspiceNe Nerd Font',
weight='Regular',
harfbuzz_features={ 'calt', 'liga', 'dlig', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08' },
})
config.font = wezterm.font "JetBrainsMono Nerd Font"
config.font_rules = {
{ -- Italic
intensity = 'Normal',
italic = true,
font = wezterm.font({
-- family="MonaspiceRa Nerd Font", -- script style
family='MonaspiceXe Nerd Font', -- courier-like
style = 'Italic',
})
},
-- config.font = wezterm.font({
-- family='MonaspiceNe Nerd Font',
-- weight='Regular',
-- harfbuzz_features={ 'calt', 'liga', 'dlig', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08' },
-- })
{ -- Bold
intensity = 'Bold',
italic = false,
font = wezterm.font( {
family='MonaspiceKr Nerd Font',
family='MonaspiceKr Nerd Font',
-- weight='ExtraBold',
weight='Bold',
})
},
-- config.font_rules = {
-- { -- Italic
-- intensity = 'Normal',
-- italic = true,
-- font = wezterm.font({
-- -- family="MonaspiceRa Nerd Font", -- script style
-- family='MonaspiceXe Nerd Font', -- courier-like
-- style = 'Italic',
-- })
-- },
{ -- Bold Italic
intensity = 'Bold',
italic = true,
font = wezterm.font( {
family='MonaspiceXe Nerd Font',
style='Italic',
weight='Bold',
}
)
},
}
-- { -- Bold
-- intensity = 'Bold',
-- italic = false,
-- font = wezterm.font( {
-- family='MonaspiceKr Nerd Font',
-- family='MonaspiceKr Nerd Font',
-- -- weight='ExtraBold',
-- weight='Bold',
-- })
-- },
-- { -- Bold Italic
-- intensity = 'Bold',
-- italic = true,
-- font = wezterm.font( {
-- family='MonaspiceXe Nerd Font',
-- style='Italic',
-- weight='Bold',
-- }
-- )
-- },
-- }
-- and finally, return the configuration to wezterm
return config