Last active
December 8, 2023 13:44
-
-
Save nonnontrivial/b19c747a368fd2478cce4814a9ce829a to your computer and use it in GitHub Desktop.
vscode 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
| { | |
| "telemetry.telemetryLevel": "off", | |
| "git.enableSmartCommit": true, | |
| "python.defaultInterpreterPath": "/usr/local/bin/python3", | |
| "python.analysis.extraPaths": [ | |
| "~/Library/Python/3.11/lib/python/site-packages" | |
| ], | |
| "python.testing.pytestEnabled": true, | |
| "python.analysis.typeCheckingMode": "off", | |
| "[python]": { | |
| "editor.defaultFormatter": "charliermarsh.ruff", | |
| "editor.formatOnSave": true, | |
| "editor.wordBasedSuggestions": true | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json][javascript][javascriptreact][typescriptreact][typescript]": { | |
| "editor.tabSize": 2 | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascript][javascriptreact][typescript][typescriptreact]": { | |
| "editor.formatOnSave": false, | |
| "editor.wordBasedSuggestions": true, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[html]": { | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[dockercompose]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "extensions.experimental.affinity": { | |
| "vscodevim.vim": 1 | |
| }, | |
| "keyboard.dispatch": "keyCode", | |
| "typescript.referencesCodeLens.enabled": true, | |
| "typescript.preferences.quoteStyle": "double", | |
| "typescript.inlayHints.parameterTypes.enabled": true, | |
| "typescript.inlayHints.propertyDeclarationTypes.enabled": true, | |
| "typescript.inlayHints.functionLikeReturnTypes.enabled": true, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.format.semicolons": "remove", | |
| "javascript.preferences.quoteStyle": "double", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "javascript.format.semicolons": "remove", | |
| "editor.hover.sticky": false, | |
| "editor.hover.above": false, | |
| "editor.hover.delay": 0, | |
| "editor.semanticHighlighting.enabled": true, | |
| "editor.folding": false, | |
| "editor.hideCursorInOverviewRuler": true, | |
| "editor.occurrencesHighlight": true, | |
| "editor.roundedSelection": true, | |
| "editor.selectionHighlight": true, | |
| "editor.scrollBeyondLastLine": false, | |
| "editor.renderLineHighlight": "line", | |
| "workbench.startupEditor": "none", | |
| "explorer.openEditors.visible": 10, | |
| "editor.wordWrap": "off", | |
| "editor.detectIndentation": false, | |
| "editor.formatOnSave": true, | |
| "editor.stickyScroll.enabled": true, | |
| "editor.stickyScroll.maxLineCount": 10, | |
| "editor.scrollbar.verticalScrollbarSize": 10, | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.guides.bracketPairs": false, | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.minimap.side": "right", | |
| "editor.minimap.enabled": true, | |
| "editor.minimap.renderCharacters": false, | |
| "editor.minimap.scale": 1, | |
| "editor.minimap.showSlider": "always", | |
| "editor.minimap.autohide": false, | |
| "editor.inlayHints.enabled": "off", | |
| "editor.matchBrackets": "near", | |
| "editor.smoothScrolling": true, | |
| "editor.lineNumbers": "off", | |
| "editor.lightbulb.enabled": false, | |
| "editor.fontVariations": true, | |
| "editor.fontLigatures": true, | |
| "editor.fontWeight": "500", | |
| "editor.fontFamily": "jetbrains mono", | |
| "diffEditor.wordWrap": "off", | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.openEditors.sortOrder": "fullPath", | |
| "explorer.sortOrder": "modified", | |
| "explorer.sortOrderLexicographicOptions": "unicode", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "terminal.integrated.defaultProfile.linux": "bash", | |
| "terminal.integrated.smoothScrolling": true, | |
| "git.confirmSync": false, | |
| "git.ignoreRebaseWarning": true, | |
| "jupyter.notebookFileRoot": "${workspaceFolder}", | |
| "notebook.lineNumbers": "off", | |
| "window.titleBarStyle": "custom", | |
| "workbench.list.smoothScrolling": true, | |
| "workbench.editor.decorations.colors": true, | |
| "workbench.reduceMotion": "off", | |
| "search.sortOrder": "fileNames", | |
| "search.quickOpen.history.filterSortOrder": "recency", | |
| "workbench.panel.defaultLocation": "bottom", | |
| "explorer.decorations.colors": true, | |
| "editor.cursorBlinking": "solid", | |
| "breadcrumbs.symbolPath": "on", | |
| "editor.definitionLinkOpensInPeek": true, | |
| "editor.guides.indentation": true, | |
| "editor.guides.highlightActiveIndentation": false, | |
| "workbench.tree.renderIndentGuides": "none", | |
| "git.openRepositoryInParentFolders": "always", | |
| "extensions.ignoreRecommendations": true, | |
| "diffEditor.hideUnchangedRegions.enabled": true, | |
| "notebook.formatOnSave.enabled": true, | |
| "workbench.editor.empty.hint": "hidden", | |
| "window.density.editorTabHeight": "compact", | |
| "scm.diffDecorationsGutterWidth": 1, | |
| "workbench.activityBar.location": "top" | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment