home-manager/home/vscode.nix

18 lines
298 B
Nix

{
enable,
pkgs,
}: {
inherit enable;
enableUpdateCheck = false;
keybindings = [
{
key = "alt+a";
command = "editor.action.commentLine";
when = "editorTextFocus && !editorReadonly";
}
];
extensions = with pkgs.vscode-extensions; [
ms-python.python
];
}