Last active
October 16, 2024 10:59
-
-
Save wheresjames/9790b68f99ef80e214e8e5b3c671e9a1 to your computer and use it in GitHub Desktop.
vscode-settings.json
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": "none", | |
"workbench.sideBar.location": "right", | |
"editor.renderWhitespace": "boundary", | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"emmet.showAbbreviationSuggestions": false, | |
"editor.wordBasedSuggestions": "off", | |
"editor.snippetSuggestions": "none", | |
"editor.inlineSuggest.enabled": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.hover.enabled": false, | |
"editor.hover.sticky": false, | |
"editor.quickSuggestions": { | |
"other": false, | |
"comments": false, | |
"strings": false | |
}, | |
"editor.quickSuggestionsDelay": 10, | |
"editor.suggestOnTriggerCharacters": false, | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.wordWrap": "off", | |
//"editor.parameterHints": false, | |
"editor.parameterHints.enabled": false, | |
"explorer.openEditors.sortOrder": "alphabetical", | |
"cmake.configureOnOpen": false, | |
"security.workspace.trust.untrustedFiles": "open", | |
"clangd.detectExtensionConflicts": false, | |
"editor.autoClosingBrackets": "never", | |
"editor.autoClosingQuotes": "never", | |
"editor.dragAndDrop": false, | |
"workbench.editor.splitOnDragAndDrop": false, | |
"[python]": { | |
"editor.formatOnType": true | |
}, | |
"git.openRepositoryInParentFolders": "never", | |
"redhat.telemetry.enabled": false, | |
"workbench.colorCustomizations": { | |
"terminal.foreground": "#00F000", | |
"terminal.background": "#000000" | |
}, | |
"github.copilot.advanced": {}, | |
"C_Cpp.doxygen.generateOnType": false, | |
"javascript.suggest.completeJSDocs": false, | |
"typescript.suggest.completeJSDocs": false, | |
"java.format.comments.enabled": false, | |
"C_Cpp.autocompleteAddParentheses": false, | |
"C_Cpp.commentContinuationPatterns": [], | |
"debug.terminal.clearBeforeReusing": true, | |
"editor.autoClosingComments": "never", | |
"tabnine.experimentalAutoImports": true, | |
"terminal.integrated.scrollback": 10000, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"css.completion.completePropertyWithSemicolon": false, | |
"css.completion.triggerPropertyValueCompletion": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment