home-manager/home/vscode.nix

12 lines
213 B
Nix
Raw Normal View History

2023-07-31 18:08:25 +00:00
{enable}: {
inherit enable;
enableUpdateCheck = false;
keybindings = [
{
key = "alt+a";
command = "editor.action.commentLine";
when = "editorTextFocus && !editorReadonly";
}
];
}