Created
March 31, 2024 21:21
-
-
Save sachinumrao/aabcb58b3191ebe7da66e3fd7d81b4a3 to your computer and use it in GitHub Desktop.
VS Code Settings
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
| { | |
| "python.defaultInterpreterPath": "~/miniconda3/envs/rl/bin/python", | |
| "terminal.integrated.fontSize": 15, | |
| "terminal.integrated.lineHeight": 1.15, | |
| "python.jediEnabled": false, | |
| "terminal.integrated.fontFamily": "Menlo for Powerline", | |
| "python.autoUpdateLanguageServer": false, | |
| "python.languageServer": "Pylance", | |
| "editor.formatOnType": true, | |
| "editor.minimap.enabled": false, | |
| "python.dataScience.sendSelectionToInteractiveWindow": true, | |
| "python.dataScience.askForKernelRestart": false, | |
| "workbench.iconTheme": "vscode-icons", | |
| "editor.acceptSuggestionOnEnter": "off", | |
| "breadcrumbs.enabled": false, | |
| "notebook.breadcrumbs.showCodeCells": false, | |
| "editor.formatOnSave": true, | |
| "python.formatting.provider": "black", | |
| "python.formatting.blackArgs": [ | |
| "--line-length=79" | |
| ], | |
| "python.sortImports.args": [ | |
| "--profile=black" | |
| ], | |
| "editor.rulers": [ | |
| 79 | |
| ], | |
| "[python]": { | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": true | |
| }, | |
| "editor.formatOnType": true, | |
| "editor.defaultFormatter": "ms-python.black-formatter" | |
| }, | |
| "python.pylanceLspNotebooksEnabled": true, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "vsicons.dontShowNewVersionMessage": true, | |
| "files.watcherExclude": { | |
| "**/.bloop": true, | |
| "**/.metals": true, | |
| "**/.ammonite": true | |
| }, | |
| "git.openRepositoryInParentFolders": "never", | |
| "update.showReleaseNotes": false, | |
| "jupyter.interactiveWindow.textEditor.executeSelection": true, | |
| "editor.fontSize": 16, | |
| "update.mode": "none", | |
| "extensions.autoUpdate": false, | |
| "editor.fontFamily": "'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace", | |
| "C_Cpp.default.compilerPath": "/usr/bin/g++", | |
| "extensions.ignoreRecommendations": true, | |
| "workbench.colorTheme": "Tokyo Night Storm", | |
| "github.copilot.advanced": { | |
| "debug.testOverrideProxyUrl": "http://localhost:8000", | |
| "debug.overrideProxyUrl": "http://localhost:8000" | |
| }, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "plaintext": false, | |
| "markdown": false, | |
| "scminput": false | |
| }, | |
| "editor.codeLens": false, | |
| "rust-analyzer.diagnostics.enable": false, | |
| "rust-analyzer.inlayHints.chainingHints.enable": false, | |
| "editor.inlayHints.enabled": "offUnlessPressed", | |
| "editor.inlineSuggest.suppressSuggestions": true, | |
| "editor.tokenColorCustomizations": { | |
| "[Tokyo Night]": { // or "[Tokyo Night Storm]" | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "meta.var.expr storage.type", | |
| "keyword.control.flow", | |
| "keyword.control.return", | |
| "meta.directive.vue punctuation.separator.key-value.html", | |
| "meta.directive.vue entity.other.attribute-name.html", | |
| "tag.decorator.js entity.name.tag.js", | |
| "tag.decorator.js punctuation.definition.tag.js", | |
| "storage.modifier" | |
| ], | |
| "settings": { | |
| "fontStyle": "" | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| # List of Extensions | |
| # python, pylance, python-indent, Black Formatter, isort, Jupyter, vscode-icons | |
| # Themes: One Dark pro, Ayu, Cobalt2, Tokyo Night |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment