home-manager/home/vscode.nix
2023-07-31 20:08:25 +02:00

12 lines
213 B
Nix

{enable}: {
inherit enable;
enableUpdateCheck = false;
keybindings = [
{
key = "alt+a";
command = "editor.action.commentLine";
when = "editorTextFocus && !editorReadonly";
}
];
}