Created
June 7, 2025 13:47
-
-
Save pbk20191/565cb81cde8395643d9bfa311d6e9523 to your computer and use it in GitHub Desktop.
VSCode settings data 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.colorTheme": "Default Dark Modern", | |
"terminal.integrated.profiles.windows": { | |
"PowerShell": { | |
"source": "PowerShell", | |
"icon": "terminal-powershell" | |
}, | |
"Command Prompt": { | |
"path": [ | |
"${env:windir}\\Sysnative\\cmd.exe", | |
"${env:windir}\\System32\\cmd.exe" | |
], | |
"args": [], | |
"icon": "terminal-cmd" | |
}, | |
"Git Bash": { | |
"source": "Git Bash" | |
}, | |
"Developer Command Prompt for VS 2022": { | |
"path": [ | |
"${env:windir}\\System32\\cmd.exe" | |
], | |
"args": [ | |
"/k", | |
"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\Tools\\VsDevCmd.bat", | |
], | |
"icon": "terminal-cmd" | |
}, | |
"Developer Powershell":{ | |
"source": "PowerShell", | |
"args": [ | |
"-noexit", | |
"-c", | |
"$vsPath = & \"${env:ProgramFiles(x86)}/Microsoft Visual Studio/Installer/vswhere.exe\" -property installationpath; Import-Module \"$vsPath/Common7/Tools/Microsoft.VisualStudio.DevShell.dll\"; Enter-VsDevShell -VsInstallPath $vsPath -SkipAutomaticLocation" | |
], | |
"icon": "terminal-powershell" | |
} | |
}, | |
"terminal.integrated.defaultProfile.windows": "Developer Command Prompt for VS 2022", | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter.notebook.ipynb" | |
}, | |
"remote.tunnels.access.preventSleep": true, | |
"lldb.launch.expressions": "native", | |
"cmake.pinnedCommands": [ | |
"workbench.action.tasks.configureTaskRunner", | |
"workbench.action.tasks.runTask" | |
], | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.selectionHighlight": false, | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": "off" | |
}, | |
"terminal.integrated.env.osx": {}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"svelte.enable-ts-plugin": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment