Last active
October 30, 2024 13:33
-
-
Save rkeithhill/bbd09030096bf4277283de4fcb8ad3fc to your computer and use it in GitHub Desktop.
My Visual Studio Code user settings
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
// 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