31 lines
613 B
Lua
31 lines
613 B
Lua
local wezterm = require("wezterm")
|
|
|
|
local fonts = {
|
|
require("fonts.firacode_nerd_font"),
|
|
require("fonts.segoe_ui_emoji"),
|
|
}
|
|
|
|
return {
|
|
font_size = 16.0,
|
|
animation_fps = 144,
|
|
max_fps = 144,
|
|
default_prog = {
|
|
[[pwsh]],
|
|
},
|
|
font = wezterm.font_with_fallback(fonts),
|
|
font_rules = {
|
|
{
|
|
italic = true,
|
|
font = wezterm.font_with_fallback({
|
|
require("fonts.victor_mono_nerd_font"),
|
|
}),
|
|
},
|
|
{
|
|
italic = false,
|
|
font = wezterm.font_with_fallback({
|
|
require("fonts.firacode_nerd_font"),
|
|
require("fonts.noto_sans_cjk_sc"),
|
|
}),
|
|
},
|
|
},
|
|
}
|