Skip to content

Instantly share code, notes, and snippets.

@CoolOppo
Last active September 1, 2023 08:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save CoolOppo/cef667674eca0562eeaf3e3eb6285baf to your computer and use it in GitHub Desktop.
Save CoolOppo/cef667674eca0562eeaf3e3eb6285baf to your computer and use it in GitHub Desktop.
My VS Code settings
{
"C_Cpp.clang_format_style": "file",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++17",
"bracket-pair-colorizer-2.highlightActiveScope": true,
"bracket-pair-colorizer-2.showBracketsInGutter": true,
"bracket-pair-colorizer-2.showHorizontalScopeLine": false,
"breadcrumbs.enabled": true,
"editor.dragAndDrop": false,
"editor.find.autoFindInSelection": true,
"editor.find.seedSearchStringFromSelection": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.formatOnSaveTimeout": 4000,
"editor.formatOnType": true,
"editor.mouseWheelZoom": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.smoothScrolling": true,
"editor.wordWrap": "on",
"extensions.closeExtensionDetailsOnViewChange": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"files.associations": {
"*.hint": "cpp",
"*.shader": "c"
},
"files.autoGuessEncoding": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 250,
"files.hotExit": "onExitAndWindowClose",
"files.trimFinalNewlines": true,
"files.useExperimentalFileWatcher": true,
"git.ignoreMissingGitWarning": true,
"html.format.wrapAttributes": "aligned-multiple",
"indentRainbow.colors": [
"rgba(255, 215, 0, .05)",
"rgba(218, 112, 214, .05)",
"rgba(135, 206, 250, .05)"
],
"java.errors.incompleteClasspath.severity": "ignore",
"javascript.implicitProjectConfig.checkJs": true,
"powershell.codeFormatting.preset": "OTBS",
"powershell.debugging.createTemporaryIntegratedConsole": true,
"powershell.integratedConsole.showOnStartup": false,
"python.formatting.provider": "yapf",
"python.jediEnabled": false,
"python.linting.enabled": false,
"search.quickOpen.includeSymbols": true,
"search.smartCase": true,
"terminal.integrated.copyOnSelection": true,
"workbench.colorTheme": "One Dark Pro Vivid",
"workbench.startupEditor": "newUntitledFile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment