home-manager/home/vscode.nix

18 lines
298 B
Nix
Raw Normal View History

2023-08-02 14:29:58 +00:00
{
enable,
pkgs,
}: {
2023-07-31 18:08:25 +00:00
inherit enable;
enableUpdateCheck = false;
keybindings = [
{
key = "alt+a";
command = "editor.action.commentLine";
when = "editorTextFocus && !editorReadonly";
}
];
2023-08-02 14:29:58 +00:00
extensions = with pkgs.vscode-extensions; [
ms-python.python
];
2023-07-31 18:08:25 +00:00
}