This commit is contained in:
2026-02-27 11:56:01 +08:00
parent 7104c53f93
commit ab134c2909
5 changed files with 126 additions and 0 deletions

25
wezterm/wezterm.lua Normal file
View File

@@ -0,0 +1,25 @@
local wz = require("wezterm")
local config = {}
config.audible_bell = "Disabled"
config.check_for_updates = false
config.color_scheme = "Builtin Solarized Dard"
config.initial_rows = 30
config.initial_cols = 130
config.font_size = 11
config.font = wz.font 'Maple Mono NL NF CN Light'
config.keys = {
{
key = "F11",
mods = "CTRL",
action = wz.action.ToggleFullScreen,
},
{
key = "F10",
mods = "CTRL",
action = wz.action.Hide,
},
}
return config