This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "key": "alt+q", | |
| "command": "python.execInTerminal-icon" | |
| }, | |
| { | |
| "key": "alt+d", | |
| "command": "cSpell.addIssuesToDictionary" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "http.proxySupport": "off", | |
| "terminal.integrated.localEchoLatencyThreshold": -1, | |
| "terminal.integrated.localEchoEnabled": "off", | |
| "workbench.editorAssociations": { | |
| "*.md": "vscode.markdown.preview.editor" | |
| }, | |
| "workbench.startupEditor": "none", | |
| "editor.fontFamily": "JetBrains Mono, Menlo, Monaco, Courier New, monospace", | |
| "editor.fontWeight": "normal", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # To learn more about how to use Nix to configure your environment | |
| # see: https://developers.google.com/idx/guides/customize-idx-env | |
| { pkgs, ... }: { | |
| # Which nixpkgs channel to use. | |
| channel = "stable-24.05"; # or "unstable" | |
| # Use https://search.nixos.org/packages to find packages | |
| packages = [ | |
| pkgs.python311 | |
| pkgs.python311Packages.pip | |
| ]; |