迁移
This commit is contained in:
25
wezterm/wezterm.lua
Normal file
25
wezterm/wezterm.lua
Normal 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
|
||||
Reference in New Issue
Block a user