mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-28 03:37:12 +08:00
13 lines
293 B
Lua
13 lines
293 B
Lua
return {
|
|
font = wezterm.font("Monaspace Argon");
|
|
color_scheme = 'Tokyo Night';
|
|
window_decorations = 'RESIZE';
|
|
keys = {
|
|
-- Emulate other programs (Zed, VSCode, ...)
|
|
{
|
|
key = 'P',
|
|
mods = 'CMD|SHIFT',
|
|
action = wezterm.action.ActivateCommandPalette,
|
|
},
|
|
};
|
|
}
|