This commit is contained in:
2022-01-11 22:09:37 -07:00
commit 816403ac66
4 changed files with 314 additions and 0 deletions

28
User/keybindings.json Normal file
View File

@ -0,0 +1,28 @@
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+f10",
"command": "debug.jumpToCursor"
},
{
"key": "ctrl+f10",
"command": "editor.debug.action.runToCursor"
},
{
"key": "ctrl+shift+s",
"command": "-workbench.action.files.saveLocalFile",
"when": "remoteFileDialogVisible"
},
{
"key": "ctrl+shift+s",
"command": "-workbench.action.files.saveAs"
},
{
"key": "ctrl+shift+s",
"command": "saveAll"
},
{
"key": "ctrl+k s",
"command": "-saveAll"
}
]

113
User/settings.json Normal file
View File

@ -0,0 +1,113 @@
{
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"cSpell.userWords": [
"Decompiler",
"HSMS",
"Infineon",
"Tencor",
"Villach",
"ipdsf",
"pdsf",
"tibco"
],
"workbench.startupEditor": "newUntitledFile",
"git.ignoreMissingGitWarning": true,
"editor.largeFileOptimizations": false,
"mssql.connections": [
{
"connectionString": "Microsoft.SqlTools|itemtype:Profile|server:MESSA008.na.infineon.com|db:IRMNSPC_TEST|user:IQSDMS1_TEST|isConnectionString:true",
"profileName": "DEV G4WAFERS",
"database": "IRMNSPC_TEST",
"user": "IQSDMS1_TEST",
"server": "MESSA008.na.infineon.com",
"authenticationType": "SqlLogin",
"savePassword": true,
"password": ""
},
{
"connectionString": "Microsoft.SqlTools|itemtype:Profile|server:MESSA008.na.infineon.com|db:G4Wafers_TEST|user:IQSDMS1_TEST|isConnectionString:true",
"profileName": "DEV IRMNSPC",
"database": "G4Wafers_TEST",
"user": "IQSDMS1_TEST",
"server": "MESSA008.na.infineon.com",
"authenticationType": "SqlLogin",
"savePassword": true,
"password": ""
}
],
"explorer.openEditors.visible": 0,
"workbench.list.openMode": "doubleClick",
"debug.onTaskErrors": "showErrors",
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"terminal.integrated.tabs.enabled": true,
"workbench.editorAssociations": {
"*.pcl": "hexEditor.hexedit",
"*.dib": "default"
},
"workbench.commandPalette.history": 20,
"task.quickOpen.history": 20,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"[json]": {
"editor.defaultFormatter": "SimonSiefke.prettier-vscode"
},
"prettier.enabledLanguageIds": [
"csharp",
"css",
"elm",
"flow",
"graphql",
"handlebars",
"html",
"java",
"javascript",
"javascriptreact",
"jsonc",
"less",
"markdown",
"mdx",
"php",
"postcss",
"ruby",
"scss",
"solidity",
"svelte",
"svg",
"typescript",
"typescriptreact",
"twig",
"vue",
"xml",
"yaml",
"json"
],
"editor.fontSize": 16,
"[xml]": {
"editor.defaultFormatter": "SimonSiefke.prettier-vscode"
},
"security.workspace.trust.untrustedFiles": "open",
"window.zoomLevel": 1,
"editor.accessibilitySupport": "off",
"workbench.editor.untitled.hint": "hidden",
"debug.console.fontSize": 12,
"terminal.integrated.fontSize": 12,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.renderWhitespace": "none",
"debug.openDebug": "neverOpen",
"debug.internalConsoleOptions": "neverOpen",
"debug.console.closeOnEnd": true,
"debug.terminal.clearBeforeReusing": true,
"window.newWindowDimensions": "maximized",
"csharp.referencesCodeLens.enabled": false,
"vscode-edge-devtools.mirrorEdits": true,
"debug.javascript.suggestPrettyPrinting": false,
"csharp.suppressBuildAssetsNotification": true,
"csharp.suppressDotnetRestoreNotification": true,
"omnisharp.disableMSBuildDiagnosticWarning": true,
"razor.disableBlazorDebugPrompt": true
}

View File

@ -0,0 +1,36 @@
{
"ignoreUploadFiles": [
"state.*",
"syncLocalSettings.json",
".DS_Store",
"sync.lock",
"projects.json",
"projects_cache_vscode.json",
"projects_cache_git.json",
"projects_cache_svn.json",
"gpm_projects.json",
"gpm-recentItems.json"
],
"ignoreUploadFolders": [
"workspaceStorage"
],
"ignoreExtensions": [],
"gistDescription": "Visual Studio Code Settings Sync Gist",
"version": 343,
"token": "",
"downloadPublicGist": false,
"supportedFileExtensions": [
"json",
"code-snippets"
],
"openTokenLink": true,
"disableUpdateMessage": false,
"lastUpload": null,
"lastDownload": null,
"githubEnterpriseUrl": null,
"askGistDescription": false,
"customFiles": {},
"hostName": null,
"universalKeybindings": false,
"autoUploadDelay": 20
}