snowflake/home/programs/editors/zed/userkeymap.nix
2025-02-06 21:03:17 -05:00

15 lines
234 B
Nix

_: {
programs.zed-editor.userKeymaps = [
{
context = "Workspace";
bindings = {
ctrl-shift-t = "workspace::NewTerminal";
};
}
{
context = "Editor";
bindings = {
};
}
];
}