Skip to content

Instantly share code, notes, and snippets.

@rkeithhill
Last active January 14, 2021 12:46
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkeithhill/bbd09030096bf4277283de4fcb8ad3fc to your computer and use it in GitHub Desktop.
Save rkeithhill/bbd09030096bf4277283de4fcb8ad3fc to your computer and use it in GitHub Desktop.
My Visual Studio Code user settings
// Place your settings in this file to overwrite the default settings
{
"debug.toolBarLocation": "docked",
"diffEditor.ignoreTrimWhitespace": true,
"editor.codeLens": true,
"editor.detectIndentation": false,
"editor.dragAndDrop": false,
"editor.renderWhitespace": "none",
"editor.rulers": [
120
],
"extensions.ignoreRecommendations": false,
"files.hotExit": "onExitAndWindowClose",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"C_Cpp.autoAddFileAssociations": false,
"git.confirmSync": false,
"git.promptToSaveFilesBeforeCommit": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": true,
"gitlens.keymap": "chorded",
"powershell.codeFolding.enable": true,
"powershell.codeFormatting.preset": "Stroustrup",
"powershell.debugging.createTemporaryIntegratedConsole": false,
"powershell.developer.editorServicesLogLevel": "Normal",
"powershell.developer.editorServicesWaitForDebugger": false,
"powershell.developer.featureFlags": [ "PSReadLine" ],
"powershell.enableProfileLoading": true,
"powershell.integratedConsole.focusConsoleOnExecute": true,
"powershell.scriptAnalysis.enable": true,
"powershell.sideBar.CommandExplorerVisibility": false,
"powershell.useX86Host": false,
"powershell.powerShellExePath": "C:\\Program Files\\PowerShell\\6-preview\\pwsh.exe",
"terminal.integrated.rendererType": "dom",
"terminal.integrated.scrollback": 5000,
"terminal.integrated.shell.windows": "C:/Program Files/PowerShell/6/pwsh.exe",
"window.zoomLevel": 0,
"workbench.iconTheme": "vs-seti",
"workbench.startupEditor": "welcomePage",
"[c]": {
"editor.quickSuggestions": false
},
"[cpp]": {
"editor.quickSuggestions": false
},
"[csharp]": {
"files.trimTrailingWhitespace": false
},
"[html]": {
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": false,
"files.trimTrailingWhitespace": true
},
"[powershell]": {
"files.trimTrailingWhitespace": true
},
"[xml]": {
"editor.tabSize": 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment