nixos-config/home/wezterm/wezterm.lua
Sridhar Ratnakumar 95f54c2cca
wezterm: keybindings
also reorganize
2024-08-12 15:46:26 -04:00

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,
},
};
}