Skip to content

Instantly share code, notes, and snippets.

@wheresjames
Created March 29, 2024 04:12
Show Gist options
  • Save wheresjames/9790b68f99ef80e214e8e5b3c671e9a1 to your computer and use it in GitHub Desktop.
Save wheresjames/9790b68f99ef80e214e8e5b3c671e9a1 to your computer and use it in GitHub Desktop.
vscode-settings.json
{
"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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment