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