Last active
May 1, 2025 04:10
-
-
Save nicholatian/9cac3411b5e1434577a3fd7f73a5e77f to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"files.autoSave": "afterDelay", | |
"editor.tabSize": 3, | |
"editor.renderWhitespace": "all", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.insertSpaces": false, | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.minimap.maxColumn": 80, | |
"editor.quickSuggestions": { | |
"comments": "off", | |
"strings": "off", | |
"other": "off" | |
}, | |
"editor.acceptSuggestionOnEnter": "off", | |
"breadcrumbs.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"editor.fontFamily": "Source Code Pro", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"files.insertFinalNewline": true, | |
"files.eol": "\n", | |
"files.trimFinalNewlines": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"explorer.confirmDelete": false, | |
"cmake.configureOnOpen": false, | |
"editor.renderControlCharacters": false, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"editor.lineHeight": 1.2, | |
"python.showStartPage": false, | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"html.format.wrapLineLength": 79, | |
"editor.wordWrapColumn": 79, | |
"editor.unicodeHighlight.ambiguousCharacters": false, | |
"python.languageServer": "Pylance", | |
"C_Cpp.autocomplete": "disabled", | |
"extensions.ignoreRecommendations": true, | |
"workbench.editor.languageDetection": false, | |
"editor.cursorBlinking": "phase", | |
"editor.cursorStyle": "block", | |
"editor.find.cursorMoveOnType": false, | |
"editor.rulers": [ | |
72, | |
80, | |
100 | |
], | |
"editor.formatOnSave": true, | |
"editor.minimap.showSlider": "always", | |
"files.associations": { | |
"*.h": "cpp" | |
}, | |
"files.trimTrailingWhitespace": true, | |
"terminal.external.linuxExec": "xterm-256color", | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.localEchoLatencyThreshold": 16, | |
"terminal.integrated.rightClickBehavior": "paste", | |
"editor.guides.bracketPairs": "active", | |
"editor.bracketPairColorization.enabled": false, | |
"terminal.integrated.fontFamily": "Source Code Pro", | |
"terminal.explorerKind": "external", | |
"terminal.integrated.allowChords": false, | |
"python.globalModuleInstallation": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"workbench.editor.empty.hint": "hidden", | |
"d.dubCompiler": "ldc2", | |
"d.stdlibPath": "auto", | |
"update.showReleaseNotes": false, | |
"[markdown]": { | |
"files.trimTrailingWhitespace": false, | |
"editor.unicodeHighlight.ambiguousCharacters": false, | |
"editor.unicodeHighlight.invisibleCharacters": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.wordWrap": "on", | |
"editor.quickSuggestions": { | |
"comments": "off", | |
"strings": "off", | |
"other": "off" | |
} | |
}, | |
"chat.commandCenter.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment