2024-06-06 前端开发环境

前言:今天公司给我配了台电脑,要我装一下环境,故此记录一下。

一.nvm:node版本管理器,全称Node Version Manage。使用它不用单独跑去node官网下载node,nvm提供了更便捷的下载方式。

下载链接:https://github.com/coreybutler/nvm-windows/releases

上面两个任选一个即可。

安装node指定版本:nvm install 指定版本号

 注意不要把install缩写成i,nvm暂不支持缩写i,会报错

查看已安装的node版本:

nvm list 查看所有已安装在本地的node.js版本

nvm list available 查看能安装的所有node.js版本

安装完后记得使用use去使用该版本:nvm use 指定版本号

ps:如果要装cnpm,可以运行命令👇

npm install -g cnpm --registry=https://registry.npm.taobao.org

 

 二:git

官网:https://git-scm.com/

下载:https://git-scm.com/download/win

 

三:postman

官网:https://www.postman.com/

下载:https://www.postman.com/downloads/?utm_source=postman-home

 

四:Hbuilder X

官网:https://www.dcloud.io/hbuilderx.html

下载:

 五:Vs code

官网:https://code.visualstudio.com/

下载:https://code.visualstudio.com/Download

 

 

 导入配置文件:

{"name":"备份","settings":"{\"settings\":\"// {\\r\\n//     \\\"workbench.colorTheme\\\": \\\"Panda Syntax\\\",\\r\\n//     \\\"workbench.iconTheme\\\": \\\"vscode-icons\\\",\\r\\n//     \\\"[css]\\\": {\\r\\n//         \\\"editor.defaultFormatter\\\": \\\"michelemelluso.code-beautifier\\\"\\r\\n//     },\\r\\n//     \\\"editor.fontSize\\\": 15,\\r\\n//     \\\"[less]\\\": {\\r\\n//         \\\"editor.defaultFormatter\\\": \\\"michelemelluso.code-beautifier\\\"\\r\\n//     },\\r\\n//     \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\",\\r\\n//     \\\"editor.wordSeparators\\\": \\\"`~!@#$%^&*()=+[{]}\\\\\\\\|;:'\\\\\\\",.<>/?\\\",\\r\\n//     \\\"workbench.startupEditor\\\": \\\"none\\\",\\r\\n//     \\\"vetur.format.options.tabSize\\\": 4,\\r\\n//     \\\"editor.wordWrap\\\": \\\"on\\\",\\r\\n//     \\\"editor.accessibilityPageSize\\\": 300,\\r\\n//     \\\"editor.accessibilitySupport\\\": \\\"on\\\",\\r\\n//     \\\"vetur.format.options.useTabs\\\": true,\\r\\n//     \\\"vetur.ignoreProjectWarning\\\": true,\\r\\n//     \\\"vetur.useWorkspaceDependencies\\\": true,\\r\\n//     \\\"vetur.validation.interpolation\\\": false,\\r\\n//     \\\"vetur.validation.script\\\": false,\\r\\n//     \\\"vetur.validation.style\\\": false,\\r\\n//     \\\"vetur.validation.template\\\": false\\r\\n// }\\r\\n{\\r\\n    \\\"workbench.colorTheme\\\": \\\"Panda Syntax\\\",\\r\\n    \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\",\\r\\n    \\\"workbench.startupEditor\\\": \\\"none\\\",\\r\\n    \\\"workbench.iconTheme\\\": \\\"vscode-icons\\\",\\r\\n    \\\"vsicons.dontShowNewVersionMessage\\\": true,\\r\\n    \\\"editor.wordSeparators\\\": \\\"`~!@#$%^&*()=+[{]}\\\\\\\\|;:'\\\\\\\",.<>/?\\\",\\r\\n    \\\"editor.wordWrap\\\": \\\"on\\\",\\r\\n    \\\"vetur.format.defaultFormatter.html\\\": \\\"js-beautify-html\\\",\\r\\n    \\\"vetur.format.defaultFormatterOptions\\\": {\\r\\n        \\\"js-beautify-html\\\": {\\r\\n            \\\"wrap_line_length\\\": 200, //换行长度 \\r\\n            \\\"wrap_attributes\\\": \\\"auto\\\", //属性换行 \\r\\n        }\\r\\n    },\\r\\n    \\\"editor.detectIndentation\\\": false,\\r\\n    \\\"vetur.format.options.tabSize\\\": 4,\\r\\n    \\\"[scss]\\\": {\\r\\n        \\\"editor.defaultFormatter\\\": \\\"michelemelluso.code-beautifier\\\"\\r\\n    },\\r\\n    \\\"editor.fontFamily\\\": \\\"Consolas\\\",\\r\\n    \\\"explorer.confirmDelete\\\": false,\\r\\n    \\\"[css]\\\": {\\r\\n        \\\"editor.defaultFormatter\\\": \\\"michelemelluso.code-beautifier\\\"\\r\\n    },\\r\\n    \\\"[xml]\\\": {\\r\\n        \\\"editor.defaultFormatter\\\": \\\"redhat.vscode-xml\\\"\\r\\n    },\\r\\n    \\\"java.configuration.maven.userSettings\\\": \\\"D:/JavaProject/apache-maven-3.6.0/conf/settings.xml\\\",\\r\\n    // \\\"maven.settingsFile\\\": \\\"D:/JavaProject/apache-maven-3.6.0/conf/settings.xml\\\",\\r\\n    // \\\"java.errors.incompleteClasspath.severity\\\": \\\"ignore\\\",\\r\\n    \\\"maven.terminal.useJavaHome\\\": true,\\r\\n    \\\"maven.terminal.customEnv\\\": [\\r\\n        {\\r\\n            \\\"environmentVariable\\\": \\\"JAVA_HOME\\\",\\r\\n            \\\"value\\\": \\\"D:\\\\\\\\JavaProject\\\\\\\\jdk1.8.0_131\\\"\\r\\n        }\\r\\n    ],\\r\\n    \\\"bitoAI.codeCompletion.setAutoCompletionTriggerLogic\\\": 250,\\r\\n    \\\"bitoAI.codeCompletion.enableAutoCompletion\\\": true,\\r\\n    \\\"bitoAI.codeCompletion.enableCommentToCode\\\": true,\\r\\n    \\\"liveSassCompile.settings.generateMap\\\": false,\\r\\n    \\\"liveSassCompile.settings.showOutputWindow\\\": false,\\r\\n    \\\"editor.inlineSuggest.showToolbar\\\": \\\"always\\\",\\r\\n    \\\"terminal.integrated.defaultProfile.windows\\\": \\\"PowerShell\\\",\\r\\n    \\\"editor.unicodeHighlight.ambiguousCharacters\\\": false,\\r\\n    \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\r\\n    \\\"liveSassCompile.settings.includeItems\\\": [],\\r\\n    \\\"Lingma.LocalStoragePath\\\": \\\"C:\\\\\\\\Users\\\\\\\\DereK\\\\\\\\.lingma\\\",\\r\\n    \\\"[vue]\\\": {\\r\\n        \\\"editor.defaultFormatter\\\": \\\"Vue.volar\\\"\\r\\n    },\\r\\n    \\\"gitlens.graph.minimap.enabled\\\": false,\\r\\n}\"}","keybindings":"{\"keybindings\":\"// 将键绑定放在此文件中以覆盖默认值\\n[]\",\"platform\":3}","extensions":"[{\"identifier\":{\"id\":\"alibaba-cloud.tongyi-lingma\",\"uuid\":\"b90347d7-e182-4b37-8314-4cde59e48d27\"},\"displayName\":\"TONGYI Lingma\"},{\"identifier\":{\"id\":\"clarkyu.vscode-sql-beautify\",\"uuid\":\"3422b2ca-7151-4627-b7ce-adf888562d04\"},\"displayName\":\"SQL Beautify\"},{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"displayName\":\"GitLens — Git supercharged\"},{\"identifier\":{\"id\":\"formulahendry.code-runner\",\"uuid\":\"a6a0c5b2-d078-4bf5-a9ee-4e37054414b3\"},\"displayName\":\"Code Runner\"},{\"identifier\":{\"id\":\"glenn2223.live-sass\",\"uuid\":\"137c3643-510d-4a1f-a737-793c72e8b411\"},\"displayName\":\"Live Sass Compiler\"},{\"identifier\":{\"id\":\"hollowtree.vue-snippets\",\"uuid\":\"3620b114-6fe8-459b-8c68-99943147069b\"},\"displayName\":\"Vue 3 Snippets\"},{\"identifier\":{\"id\":\"mhutchie.git-graph\",\"uuid\":\"438221f8-1107-4ccd-a6fe-f3b7fe0856b7\"},\"displayName\":\"Git Graph\"},{\"identifier\":{\"id\":\"michelemelluso.code-beautifier\",\"uuid\":\"8a0c151b-eb13-4bed-9d49-4a252a118a0c\"},\"displayName\":\"Beautify css/sass/scss/less\"},{\"identifier\":{\"id\":\"ms-azuretools.vscode-docker\",\"uuid\":\"0479fc1c-3d67-49f9-b087-fb9069afe48f\"},\"displayName\":\"Docker\"},{\"identifier\":{\"id\":\"ms-ceintl.vscode-language-pack-zh-hans\",\"uuid\":\"e4ee7751-6514-4731-9cdb-7580ffa9e70b\"},\"displayName\":\"Chinese (Simplified) (简体中文) Language Pack for Visual Studio Code\"},{\"identifier\":{\"id\":\"ms-python.debugpy\",\"uuid\":\"4bd5d2c9-9d65-401a-b0b2-7498d9f17615\"},\"displayName\":\"Python Debugger\"},{\"identifier\":{\"id\":\"ms-python.python\",\"uuid\":\"f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5\"},\"displayName\":\"Python\"},{\"identifier\":{\"id\":\"ms-python.vscode-pylance\",\"uuid\":\"364d2426-116a-433a-a5d8-a5098dc3afbd\"},\"displayName\":\"Pylance\"},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl\",\"uuid\":\"f0c5397b-d357-4197-99f0-cb4202f22818\"},\"displayName\":\"WSL\"},{\"identifier\":{\"id\":\"octref.vetur\",\"uuid\":\"2f5dd8cb-d251-4d70-abfe-ddebcb077483\"},\"displayName\":\"Vetur\",\"disabled\":true},{\"identifier\":{\"id\":\"redhat.java\",\"uuid\":\"198a707e-28af-4e84-8610-6e2f628dd12d\"},\"displayName\":\"Language Support for Java(TM) by Red Hat\"},{\"identifier\":{\"id\":\"redhat.vscode-xml\",\"uuid\":\"6703768d-d42f-474e-9f6e-5f288d53f6e8\"},\"displayName\":\"XML\"},{\"identifier\":{\"id\":\"redhat.vscode-yaml\",\"uuid\":\"2061917f-f76a-458a-8da9-f162de22b97e\"},\"displayName\":\"YAML\"},{\"identifier\":{\"id\":\"ritwickdey.liveserver\",\"uuid\":\"b63c44fd-0457-4696-99e9-dbfdf70d77de\"},\"displayName\":\"Live Server\"},{\"identifier\":{\"id\":\"sdras.vue-vscode-snippets\",\"uuid\":\"c8d95916-cf54-455f-b324-cbd887b7d3a8\"},\"displayName\":\"Vue VSCode Snippets\"},{\"identifier\":{\"id\":\"syler.sass-indented\",\"uuid\":\"466468c3-1861-4ad1-bf3e-f9ad46545ebb\"},\"displayName\":\"Sass (.sass only)\"},{\"identifier\":{\"id\":\"tinkertrain.theme-panda\",\"uuid\":\"9764fb1f-aa45-4e65-a18e-705b3b00761c\"},\"displayName\":\"Panda Theme\"},{\"identifier\":{\"id\":\"visualstudioexptteam.intellicode-api-usage-examples\",\"uuid\":\"9fa2a00e-3bfa-4c2a-abc4-a865bb2b5cf3\"},\"displayName\":\"IntelliCode API Usage Examples\"},{\"identifier\":{\"id\":\"visualstudioexptteam.vscodeintellicode\",\"uuid\":\"876e8f93-74d0-4f4f-91b7-34a09f19f444\"},\"displayName\":\"IntelliCode\"},{\"identifier\":{\"id\":\"vmware.vscode-boot-dev-pack\",\"uuid\":\"26069f6b-56ea-4c29-8e28-371698a60020\"},\"displayName\":\"Spring Boot Extension Pack\"},{\"identifier\":{\"id\":\"vmware.vscode-spring-boot\",\"uuid\":\"0efda145-8595-4ff7-98ef-1e3abc5e5757\"},\"displayName\":\"Spring Boot Tools\"},{\"identifier\":{\"id\":\"vscjava.vscode-java-debug\",\"uuid\":\"61fcd0cf-64d7-4836-8d6b-d55f4fb83281\"},\"displayName\":\"Debugger for Java\"},{\"identifier\":{\"id\":\"vscjava.vscode-java-dependency\",\"uuid\":\"7865e561-1c83-410e-9b99-aabada597a7e\"},\"displayName\":\"Project Manager for Java\"},{\"identifier\":{\"id\":\"vscjava.vscode-java-pack\",\"uuid\":\"96f11e1f-1a46-4592-b084-f025b2c2a81f\"},\"displayName\":\"Extension Pack for Java\"},{\"identifier\":{\"id\":\"vscjava.vscode-java-test\",\"uuid\":\"67c06b0d-1891-42ca-b2a8-113e79bff069\"},\"displayName\":\"Test Runner for Java\"},{\"identifier\":{\"id\":\"vscjava.vscode-lombok\",\"uuid\":\"4b3ff6b3-747b-48b1-9593-61195ead981b\"},\"displayName\":\"Lombok Annotations Support for VS Code\"},{\"identifier\":{\"id\":\"vscjava.vscode-maven\",\"uuid\":\"b0f06c6b-24fb-4d7b-bd79-bc5e2fa17312\"},\"displayName\":\"Maven for Java\"},{\"identifier\":{\"id\":\"vscjava.vscode-spring-boot-dashboard\",\"uuid\":\"27fc0e8e-1341-4f52-9219-4e0f81590937\"},\"displayName\":\"Spring Boot Dashboard\"},{\"identifier\":{\"id\":\"vscjava.vscode-spring-initializr\",\"uuid\":\"a205ad34-542b-4c67-a9ed-f645103ad9c0\"},\"displayName\":\"Spring Initializr Java Support\"},{\"identifier\":{\"id\":\"vscode-icons-team.vscode-icons\",\"uuid\":\"9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a\"},\"displayName\":\"vscode-icons\"},{\"identifier\":{\"id\":\"vue.volar\",\"uuid\":\"a95ee795-1576-4ffa-acda-8d6e6a95c584\"},\"displayName\":\"Vue - Official\"}]","globalState":"{\"storage\":{\"workbench.panel.markers.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.output.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\",\"terminal.hidden\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\",\"workbench.explorer.views.state.hidden\":\"[{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":false,\\\"order\\\":2},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true,\\\"order\\\":5},{\\\"id\\\":\\\"javaProjectExplorer\\\",\\\"isHidden\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"mavenProjects\\\",\\\"isHidden\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"svn\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"xmlTreeView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewConsoleMessages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewConnectionExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewBookmarksExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewHistoryExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"activateBito.sidebar\\\",\\\"isHidden\\\":false}]\",\"workbench.scm.views.state.hidden\":\"[{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.sync\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.commits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.branches\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.remotes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.stashes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.tags\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.worktrees\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":false}]\",\"workbench.view.search.state.hidden\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\",\"workbench.activity.pinnedViewlets2\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.test\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.gitlensPatch\\\",\\\"pinned\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.extension.svnActivity\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.spring\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.gitlensInspect\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.TongyiLingma\\\",\\\"pinned\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.panel.chatSidebar\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":100},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.view.editSessions\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"userDataProfiles\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\",\"workbench.view.debug.state.hidden\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false,\\\"order\\\":5},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"jsExcludedCallers\\\",\\\"isHidden\\\":false,\\\"order\\\":7}]\",\"nps/lastSessionDate\":\"Thu Dec 08 2022\",\"nps/sessionCount\":\"2\",\"workbench.telemetryOptOutShown\":\"true\",\"workbench.statusbar.hidden\":\"[\\\"status.workspaceTrust.1658383513856\\\",\\\"status.workspaceTrust.dc5f4ab81630a9cd254367fcd8f4b24d\\\",\\\"status.workspaceTrust.8f5c29c7c088c46903541ab75a38c2f9\\\",\\\"status.workspaceTrust.1658730360046\\\",\\\"status.workspaceTrust.d20c908ef6752f635bcf381cfeb6d8dc\\\",\\\"status.workspaceTrust.1658798736951\\\",\\\"status.workspaceTrust.c64a648d224ee2272e1ab32e2770e818\\\",\\\"status.workspaceTrust.cdb4aaa10822c8d523734c13538d4f42\\\",\\\"status.workspaceTrust.f13cdead5cd49072af6228d94937b881\\\",\\\"status.workspaceTrust.b884bd8696ff553d22d0dbda5376de83\\\",\\\"status.workspaceTrust.015ac3db77509bf7e0ee2634997b0f28\\\",\\\"status.workspaceTrust.c568bede3fb827055ade6a8a0efaf75d\\\",\\\"status.workspaceTrust.1659165730038\\\",\\\"status.workspaceTrust.c6837f3b9569295e7a992c6cd07809f8\\\",\\\"status.workspaceTrust.7f9427f928b75e45230b629a2999b743\\\",\\\"status.workspaceTrust.167e963ef6f99d4dff6e533592f40632\\\",\\\"status.workspaceTrust.69198e5b1a7a5dfe116a36ef17280bc4\\\",\\\"status.workspaceTrust.bbcac0199e3d2786c55df63745609d22\\\",\\\"status.workspaceTrust.bcc2b1ad03c5e08c52e5f169037e3c92\\\",\\\"status.workspaceTrust.05c20e5f91c038a42df38f0d19c9ff9e\\\",\\\"status.workspaceTrust.166b242f4dadf138a4206588d1ef20b8\\\",\\\"status.workspaceTrust.3278896e13dfe2e29cd49899c121e582\\\",\\\"status.workspaceTrust.41dce5098c635049da6eba52c510d125\\\",\\\"status.workspaceTrust.4424af183dd8840dec55011435d6ed96\\\",\\\"status.workspaceTrust.1660817235257\\\",\\\"status.workspaceTrust.1660817247957\\\",\\\"status.workspaceTrust.1660817252965\\\",\\\"status.workspaceTrust.1df4f11f48767aa72440819a4f8446d0\\\",\\\"status.workspaceTrust.7d3df9d4abcde7a3485e9b663f5ab8cd\\\",\\\"status.workspaceTrust.1662450061247\\\",\\\"status.workspaceTrust.3a0e7e83722c463efc2a64f7b0d65e89\\\",\\\"status.workspaceTrust.aee2017d68a71662f1b079229b877b38\\\",\\\"status.workspaceTrust.dd6a5b2f4d7b1e64d91ecaab13acf441\\\",\\\"status.workspaceTrust.e64f240de919fc86ea8e55e42bd41b3c\\\",\\\"status.workspaceTrust.1663149624320\\\",\\\"status.workspaceTrust.1663152093119\\\",\\\"status.workspaceTrust.1663673590498\\\",\\\"status.workspaceTrust.967ed7b7e01c0b002b09dada80ff6782\\\",\\\"status.workspaceTrust.1665213666154\\\",\\\"status.workspaceTrust.1665541451488\\\",\\\"status.workspaceTrust.5b4416ac9de8e87b63e075eec585ba6c\\\",\\\"status.workspaceTrust.5a123e11eae6882039a893bea8ccf784\\\",\\\"status.workspaceTrust.1665718083593\\\",\\\"status.workspaceTrust.d97ffd604584f2269c994afd33f7eb75\\\",\\\"status.workspaceTrust.ad21df4496ac8dfcc17a3770a9e98652\\\",\\\"status.workspaceTrust.57de07f1d0a4f7b680776f339e6254a5\\\",\\\"status.workspaceTrust.9df004856c76d23106430d4408673683\\\",\\\"status.workspaceTrust.1670254021584\\\",\\\"status.workspaceTrust.1670254021028\\\",\\\"status.workspaceTrust.1670254020894\\\",\\\"status.workspaceTrust.5b7eaa2bcf169bc7a2cfd34765ca5c1f\\\",\\\"status.workspaceTrust.8ef1aa905bd5f9cc352cc2d61392929e\\\",\\\"status.workspaceTrust.f863a4fc3e68525c7f407c959c16cfac\\\",\\\"status.workspaceTrust.67c4f3bc5eae8794fafc189601a9da2e\\\",\\\"status.workspaceTrust.1679625221783\\\",\\\"status.workspaceTrust.1679645556905\\\",\\\"status.workspaceTrust.f9b91d070dc21d65204b3f2ed1b9c378\\\",\\\"status.workspaceTrust.7276f854d4c4049c670a4838ab139d59\\\",\\\"status.workspaceTrust.7e1e4e27846c7b7a4933f23125622a63\\\",\\\"status.workspaceTrust.1680146163138\\\",\\\"status.workspaceTrust.9b2e85ae5713f3b9292c35662a962f24\\\",\\\"status.workspaceTrust.1680765685145\\\",\\\"status.workspaceTrust.793d1e226fa779fba0e5c2d59d98ad1e\\\",\\\"status.workspaceTrust.1680766411143\\\",\\\"status.workspaceTrust.1680851016743\\\",\\\"status.workspaceTrust.0ec15357788264dd08db274d4828975c\\\",\\\"status.workspaceTrust.c26a7e18cb3bcad199ffea9aaeecb8f3\\\",\\\"status.workspaceTrust.1681364014809\\\",\\\"status.workspaceTrust.1681435713096\\\",\\\"status.workspaceTrust.1681717000258\\\",\\\"status.workspaceTrust.1681891419214\\\",\\\"status.workspaceTrust.790af73d3634ab752394f8757eb036e3\\\",\\\"status.workspaceTrust.fe0cd4cceee7a46bbecddaf7a369df6f\\\",\\\"status.workspaceTrust.1682047352348\\\",\\\"status.workspaceTrust.1682214667801\\\",\\\"status.workspaceTrust.1682471631735\\\",\\\"status.workspaceTrust.1682578028087\\\",\\\"status.workspaceTrust.1682586420820\\\",\\\"status.workspaceTrust.d210223362069b580a6d713c58841ef1\\\",\\\"status.workspaceTrust.1682652997626\\\",\\\"status.workspaceTrust.548b0dd29b00dc0ef1db26dc1b36b655\\\",\\\"status.workspaceTrust.1683362606752\\\",\\\"status.workspaceTrust.1683598105163\\\",\\\"status.workspaceTrust.1c66464a6a37f504ab8286f7d0cb70b1\\\",\\\"status.workspaceTrust.d79f79886b68adc351a105d92fc8fab1\\\",\\\"status.workspaceTrust.1683689890885\\\",\\\"status.workspaceTrust.1683697568500\\\",\\\"status.workspaceTrust.95bf4fd960706019cb763ef6bae73492\\\",\\\"status.workspaceTrust.1684222542679\\\",\\\"status.workspaceTrust.382700e756f46f178c9d63dd67d534ab\\\",\\\"status.workspaceTrust.707a4e68ddacebc37ba3e9db0a754255\\\",\\\"status.workspaceTrust.a227e14238e6941d5a4c163ed4e8d3c9\\\",\\\"status.workspaceTrust.d381af6ed4b7a0244267113998ae09b8\\\",\\\"status.workspaceTrust.1685583768206\\\",\\\"status.workspaceTrust.1685587022453\\\",\\\"status.workspaceTrust.1685587111971\\\",\\\"status.workspaceTrust.1685587732948\\\",\\\"status.workspaceTrust.cb01167ddb830ffbe1c653dd03d192d3\\\",\\\"status.workspaceTrust.10fb04961023ea99ebf77fb3c4bc8e96\\\",\\\"status.workspaceTrust.1685929822663\\\",\\\"status.workspaceTrust.5dbcba7dc0fe33def2ee53192ea33cb0\\\",\\\"status.workspaceTrust.d0689fc123109a14fb8d203e8eea0ec8\\\",\\\"status.workspaceTrust.a2b6c499fb4d2902a189df085fc8a016\\\",\\\"status.workspaceTrust.1ebfe2022959db0da5327412f9767090\\\",\\\"status.workspaceTrust.ae133f6c7782ade81bc20552dd0832b5\\\",\\\"status.workspaceTrust.5d9dc0d57e6d83428bdc795fcee7ee14\\\",\\\"status.workspaceTrust.1686297697983\\\",\\\"status.workspaceTrust.1686301856439\\\",\\\"status.workspaceTrust.518bb1ef55a63dc0db5bc01b156202b4\\\",\\\"status.workspaceTrust.1686470353412\\\",\\\"status.workspaceTrust.dae1c96c1155e8b0ffa2253708dfb2c8\\\",\\\"status.workspaceTrust.7b726a9e9ce9716f50de2a03bbd5e38f\\\",\\\"status.workspaceTrust.c50036955a07fbde05bbf5901d30afb0\\\",\\\"status.workspaceTrust.cae13d0f873471e7f8d957ae823394df\\\",\\\"status.workspaceTrust.1686704490657\\\",\\\"status.workspaceTrust.3e06ec670f3841432170f52583070f50\\\",\\\"status.workspaceTrust.6ac7defdf6e8c13d389cae7496a27f01\\\",\\\"status.workspaceTrust.d8abd4ca7c2eaa823c026712758f7653\\\",\\\"status.workspaceTrust.292e444efbde2370a60491dbb7dcab01\\\",\\\"status.workspaceTrust.67fb50409373407c5d97c7f63871fc8c\\\",\\\"status.workspaceTrust.94106956df8ab1a54438242a6f3c969a\\\",\\\"status.workspaceTrust.2d58c8264cba10a67d26d20b5bd78fa1\\\",\\\"status.workspaceTrust.7fe34de3470231a07414c9853f0cb9b9\\\",\\\"status.workspaceTrust.e72291263b64e5c84351e240d1bbeace\\\",\\\"status.workspaceTrust.834c719875df1f4449892fd68ebaf29e\\\",\\\"status.workspaceTrust.60c86312b62adf0e51e01b9b8d0ea280\\\",\\\"status.workspaceTrust.fec631efa2ee75e1c6143461155e3f31\\\",\\\"status.workspaceTrust.06f7e0d3d9b066c7d4e615d515151730\\\",\\\"status.workspaceTrust.7b6c099f8d5058d57874710aad1edc72\\\",\\\"status.workspaceTrust.309b045b1ccbdaac583445d6be972fd0\\\",\\\"status.workspaceTrust.f11745748d4d2874cb90f2d724f895da\\\",\\\"status.workspaceTrust.a2cdc0a45b8c329819bf0dc9956e763c\\\",\\\"status.workspaceTrust.1687077508673\\\",\\\"status.workspaceTrust.31bdc58b86d9c93547d476e6f0106655\\\",\\\"status.workspaceTrust.80cc65069d2f7109cdaaa2df255d0176\\\",\\\"status.workspaceTrust.1c701853f2a5db12f1abf6fc3e51caa8\\\",\\\"status.workspaceTrust.7d5079527dd7590fefb8ab894b2b381c\\\",\\\"status.workspaceTrust.c5dffa4d79a129f9b61c1818d3caec10\\\",\\\"status.workspaceTrust.35c6542cbed13dcf5d8d7121ca9b7925\\\",\\\"status.workspaceTrust.4f6262305b657e9c941d749584f69b60\\\",\\\"status.workspaceTrust.01b6e8fa41a4d1f46ed8ad1dd670222a\\\",\\\"status.workspaceTrust.9cb4cb90aa08da5daf95221a51da50d4\\\",\\\"status.workspaceTrust.b2f34ae7a6e4255a3174529358b5c7f9\\\",\\\"status.workspaceTrust.845c568aba8603678e90353d4e5f493a\\\",\\\"status.workspaceTrust.c16c6071111c02097a5b4f914d152f71\\\",\\\"status.workspaceTrust.2fab76d847e48d19b491de54befacd0e\\\",\\\"status.workspaceTrust.1687742159556\\\",\\\"status.workspaceTrust.d15dabbe37dbdfdaa2338264744655d7\\\",\\\"status.workspaceTrust.05050dcad98276a5ae1d28514e215894\\\",\\\"status.workspaceTrust.9ff4427d6ede4bc7077b447946d7bd48\\\",\\\"status.workspaceTrust.834e165dc82692f1fcf58c066d592552\\\",\\\"status.workspaceTrust.a19e394103f189c4e7d8506d6e925882\\\",\\\"status.workspaceTrust.8b2aa486293b9474b9f073422892fca7\\\",\\\"status.workspaceTrust.22a7d5c7137f5085ad234bcef96c1f82\\\",\\\"status.workspaceTrust.417fd53373d8791b7091d190a1fc0041\\\",\\\"status.workspaceTrust.1b96bc2ae375c44660641cbe003074b5\\\",\\\"status.workspaceTrust.0da10b416c957fb5b630666d64e3dae7\\\",\\\"status.workspaceTrust.f5a3b8dc6b5e57d89bfd872ef057025f\\\",\\\"status.workspaceTrust.c78db5fc262d43ca71f3def5caf95f91\\\",\\\"status.workspaceTrust.1688608263608\\\",\\\"status.workspaceTrust.678a9ba76808b2ee45d3b3f4aff2a7c0\\\",\\\"status.workspaceTrust.1688626069616\\\",\\\"status.workspaceTrust.1c937ebdf69e30cbb015243ffd4bcda1\\\",\\\"status.workspaceTrust.1688628062822\\\",\\\"status.workspaceTrust.1688628069728\\\",\\\"status.workspaceTrust.1688982095069\\\",\\\"status.workspaceTrust.1689055898034\\\",\\\"status.workspaceTrust.1689157594992\\\",\\\"status.workspaceTrust.1689746540274\\\",\\\"status.workspaceTrust.c630a5ac05a122e1981d1ce25f5d789e\\\",\\\"status.workspaceTrust.1690782518082\\\",\\\"status.workspaceTrust.6090acc5de891302c02ffa9906f6b88c\\\",\\\"status.workspaceTrust.c3a9330d5cbfca798c5eae8aff1c998d\\\",\\\"status.workspaceTrust.e65241be010e4371e28a0539a0e75fe3\\\",\\\"status.workspaceTrust.7fc736ce3480f8942f77d640442b7475\\\",\\\"status.workspaceTrust.9b379f311983de7322185afdf3effa5d\\\",\\\"status.workspaceTrust.57f321754da1531d670409b64eb147ef\\\",\\\"status.workspaceTrust.86e58dde061913bcc9f04d08e63969a2\\\",\\\"status.workspaceTrust.1690969890958\\\",\\\"status.workspaceTrust.c3f594f51b9a5e2f36b9a689d41865ec\\\",\\\"status.workspaceTrust.1690970329374\\\",\\\"status.workspaceTrust.1690989306548\\\",\\\"status.workspaceTrust.1690991688019\\\",\\\"status.workspaceTrust.1690991715461\\\",\\\"status.workspaceTrust.adc958e85ae25f9960f922a47fe62f49\\\",\\\"status.workspaceTrust.faf28bfdcdadbb951d2f6cf8bcd2a00d\\\",\\\"status.workspaceTrust.02ba239b6f3e8d668b2e3afa2f954ed5\\\",\\\"status.workspaceTrust.d7d3e56192034b204dfa38cd817ba926\\\",\\\"status.workspaceTrust.be8493fbbea5d80b6bf6660f8e8f1833\\\",\\\"status.workspaceTrust.579cd5d14ba2b7b1d30440e427c4af0d\\\",\\\"status.workspaceTrust.656206aab3b237826814d063aba14fd2\\\",\\\"status.workspaceTrust.6a1b8ba3387ab581061756d33bb71fcc\\\",\\\"status.workspaceTrust.1691994863814\\\",\\\"status.workspaceTrust.1691999775557\\\",\\\"status.workspaceTrust.1693546207716\\\",\\\"status.workspaceTrust.39efec7fb8086305f512754bd5753e9d\\\",\\\"status.workspaceTrust.70ce512284b70b9b1aaa9db27086f6a7\\\",\\\"status.workspaceTrust.a4de10eba3f178fefef1c202b7b3d28e\\\",\\\"status.workspaceTrust.87dc8666816acf291ef652f75c8a20db\\\",\\\"status.workspaceTrust.b4e3a1ac1ef97d7e3220202023e9de71\\\",\\\"status.workspaceTrust.ab09b8b4c4beaacc4c50bece1920f7a6\\\",\\\"status.workspaceTrust.2e6fd7f7fda9d2a66a5bad740c163b45\\\",\\\"status.workspaceTrust.1d8b37320d849e600ff76c2743b42b40\\\",\\\"status.workspaceTrust.1695626520102\\\",\\\"status.workspaceTrust.3c64ead84d325dd8f4ec8f0f96d98863\\\",\\\"status.workspaceTrust.1695626813498\\\",\\\"status.workspaceTrust.1697101514313\\\",\\\"status.workspaceTrust.1698221563204\\\",\\\"status.workspaceTrust.1698390295587\\\",\\\"status.workspaceTrust.5b3c10c338237a85931e1b2a2d216b28\\\",\\\"status.workspaceTrust.1701667583493\\\",\\\"status.workspaceTrust.1701683422177\\\",\\\"status.workspaceTrust.1701767935368\\\",\\\"status.workspaceTrust.bfaf487bdfc70d71b303f37975c595fa\\\",\\\"status.workspaceTrust.085f235f80109fb62657ea8fdbaf88fb\\\",\\\"status.workspaceTrust.1702024085192\\\",\\\"status.workspaceTrust.1702262860486\\\",\\\"status.workspaceTrust.1702281998250\\\",\\\"status.workspaceTrust.77a85cf70187dbbc7acd9ef406d94d3a\\\",\\\"status.workspaceTrust.afa744c51f7ab7ed1622fd089441c2ee\\\",\\\"status.workspaceTrust.1702544699051\\\",\\\"status.workspaceTrust.65ca832ced4d83c826be350740f6bd34\\\",\\\"status.workspaceTrust.1702629130121\\\",\\\"status.workspaceTrust.bd3d260b516a115cd18b02914d337b0e\\\",\\\"status.workspaceTrust.1702878546914\\\",\\\"status.workspaceTrust.1703124281633\\\",\\\"status.workspaceTrust.76a249a93fee85bcf870a48a6faa9377\\\",\\\"status.workspaceTrust.9d38257335d93b7be24a4e7a713df4de\\\",\\\"status.workspaceTrust.1703815137607\\\",\\\"status.workspaceTrust.cd0f3fc1197182abdc0e7e0934f141e5\\\",\\\"status.workspaceTrust.1704158075363\\\",\\\"status.workspaceTrust.1704250541533\\\",\\\"status.workspaceTrust.50ebc7775d580165364d209cd358817c\\\",\\\"status.workspaceTrust.e6c5b6e1078fba65cbc01c7e4b6a2c05\\\",\\\"status.workspaceTrust.ec1bd0cf483f613d2059f8827a6b0993\\\",\\\"status.workspaceTrust.1705974680498\\\",\\\"status.workspaceTrust.1706060829049\\\",\\\"status.workspaceTrust.1706060891112\\\",\\\"status.workspaceTrust.1706061061656\\\",\\\"status.workspaceTrust.1706491061114\\\",\\\"status.workspaceTrust.1706491080285\\\",\\\"status.workspaceTrust.b987749875e5bd8b7c58d902ead6b34b\\\",\\\"status.workspaceTrust.5294be71bbfdb84dfd26935b9bafc8ed\\\",\\\"status.workspaceTrust.dc0854373149a40df14dc865688376a0\\\",\\\"status.workspaceTrust.1709026772481\\\",\\\"status.workspaceTrust.d3f49879199816bd0b1ffba576f03a8d\\\",\\\"status.workspaceTrust.e6b73be1d68349cbe5087c8d36c248cf\\\"]\",\"workbench.panel.repl.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.pinnedPanels\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.panel.testResults\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.extension.gitlensPanel\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"~remote.forwardedPortsContainer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":5},{\\\"id\\\":\\\"refactorPreview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\",\"workbench.view.extensions.state.hidden\":\"[{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchWorkspaceUnsupported\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedPartiallySupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualPartiallySupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.deprecatedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchRecentlyUpdated\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.alignment\":\"center\",\"colorThemeData\":\"{\\\"id\\\":\\\"vs-dark tinkertrain-theme-panda-dist-Panda-json\\\",\\\"label\\\":\\\"Panda Syntax\\\",\\\"settingsId\\\":\\\"Panda Syntax\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#676B79\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\"},\\\"scope\\\":\\\"keyword.control, keyword.operator.new\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6E6E6\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"keyword.operator.logical, keyword.operator.comparison\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":\\\"constant\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#45A9F9\\\"},\\\"scope\\\":\\\"constant.character.escape\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6E6E6\\\"},\\\"scope\\\":\\\"variable\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BBBBBB\\\"},\\\"scope\\\":\\\"variable.parameter\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"meta.object-binding-pattern-variable.js variable\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"variable.other.constant, variable.language.this, variable.interpolation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"variable.other.object\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6E6E6\\\"},\\\"scope\\\":\\\"variable.other.property\\\"},{\\\"settings\\\":{\\\"border-bottom\\\":\\\"1px dashed rgba(255, 44, 109, 0.5)\\\"},\\\"scope\\\":\\\"invalid.illegal\\\"},{\\\"settings\\\":{\\\"background-foreground\\\":\\\"rgba(255, 44, 109, 0.62)\\\"},\\\"scope\\\":\\\"invalid.deprecated\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#19f9d8\\\"},\\\"scope\\\":\\\"string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"punctuation.definition.template-expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"support\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"support.class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#B084EB\\\"},\\\"scope\\\":\\\"support.type.object.module.js\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6FC1FF\\\"},\\\"scope\\\":\\\"support.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6FC1FF\\\"},\\\"scope\\\":\\\"entity.name.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"entity.other.inherited-class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"entity.name.tag.yaml\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":\\\"meta.decorator punctuation.decorator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6FC1FF\\\"},\\\"scope\\\":\\\"meta.decorator variable\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#45A9F9\\\"},\\\"scope\\\":\\\"keyword.other.special-method\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#B084EB\\\"},\\\"scope\\\":\\\"keyword.control.at-rule\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF4B82\\\"},\\\"scope\\\":\\\"keyword.other.important\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\"},\\\"scope\\\":\\\"variable.interpolation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6FC1FF\\\"},\\\"scope\\\":\\\"meta.source.handlebars entity.name.tag\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"punctuation.definition.expression, punctuation.definition.subexpression, punctuation.definition.block.unescaped, punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\"},\\\"scope\\\":\\\"entity.name.function.expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#B084EB\\\"},\\\"scope\\\":\\\"entity.unescaped.expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#19f9d8\\\"},\\\"scope\\\":\\\"constant.other.symbol\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":\\\"entity.expression variable.parameter.name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6FC1FF\\\"},\\\"scope\\\":\\\"entity.expression variable.parameter.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"entity.expression support.function.builtin\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"entity.name.tag.html\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"entity.other.attribute-name.handlebars\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"support.class.component\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"meta.tag.js entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\",\\\"font-weight\\\":\\\"bold\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\",\\\"font-weight\\\":\\\"bold\\\"},\\\"scope\\\":\\\"punctuation.definition.bold.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF2C6D\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"punctuation.definition.italic.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#19f9d8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#19f9d8\\\"},\\\"scope\\\":\\\"punctuation.definition.heading\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BBBBBB\\\"},\\\"scope\\\":\\\"entity.name.section.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":\\\"markup.quote\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#19f9d8\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\"},\\\"scope\\\":\\\"beginning.punctuation.definition.list\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#757575\\\"},\\\"scope\\\":\\\"markup.fenced_code.block.markdown punctuation.definition.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BBBBBB\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"fenced_code.block.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BBBBBB\\\",\\\"fontStyle\\\":\\\"normal\\\"},\\\"scope\\\":\\\"string.other.link\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#45A9F9\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"meta.link.inline.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"text.html.markdown punctuation.definition.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6FC1FF\\\"},\\\"scope\\\":\\\"entity.name.type.class.js\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"keyword.control.as.js\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"keyword.control.from.js.jsx\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#B084EB\\\"},\\\"scope\\\":\\\"keyword.control.export.js\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF2C6D\\\"},\\\"scope\\\":\\\"entity.name.tag.js.jsx, support.class.component.js.jsx\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#45A9F9\\\"},\\\"scope\\\":\\\"variable.language.super.js.jsx\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF2C6D\\\"},\\\"scope\\\":\\\"meta.tag.structure.any.html, meta.tag.other.html, entity.name.tag.html, meta.tag.metadata.script.html, entity.name.tag.jade\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF2C6D\\\"},\\\"scope\\\":\\\"entity.name.tag.inline.any.html, entity.name.tag.other.html, entity.name.tag.block.any.html\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF2C6D\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6E6E6\\\"},\\\"scope\\\":\\\"support.type.property-name.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"variable.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF2C6D\\\"},\\\"scope\\\":\\\"entity.name.tag.reference.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFB86C\\\"},\\\"scope\\\":\\\"keyword.other.unit.rem.css, keyword.other.unit.vh.css, keyword.other.unit.px.css, keyword.other.unit.em.css, keyword.other.unit.deg.css, keyword.other.unit.percentage.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6FC1FF\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF75B5\\\",\\\"fontStyle\\\":\\\"normal\\\"},\\\"scope\\\":\\\"string.regexp keyword, string.regexp keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"string.regexp keyword.operator\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"normal\\\"},\\\"scope\\\":\\\"comment.block.documentation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"entity.name.type.instance.jsdoc punctuation.definition\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CDCDCD\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"entity.name.type.instance.jsdoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCC95\\\"},\\\"scope\\\":\\\"comment.block storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FF9AC1\\\"},\\\"scope\\\":\\\"comment.block storage.custom, variable.other.jsdoc, variable.other.jsdoc punctuation.definition.string\\\"}],\\\"semanticTokenRules\\\":[],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"tinkertrain.theme-panda\\\",\\\"_extensionIsBuiltin\\\":false,\\\"_extensionName\\\":\\\"theme-panda\\\",\\\"_extensionPublisher\\\":\\\"tinkertrain\\\"},\\\"colorMap\\\":{\\\"foreground\\\":\\\"#e6e6e6\\\",\\\"errorForeground\\\":\\\"#ff4b82\\\",\\\"activityBar.background\\\":\\\"#222223\\\",\\\"activityBar.foreground\\\":\\\"#e6e6e6\\\",\\\"activityBar.border\\\":\\\"#222223\\\",\\\"activityBarBadge.background\\\":\\\"#19f9d8\\\",\\\"activityBarBadge.foreground\\\":\\\"#242526\\\",\\\"badge.background\\\":\\\"#6fc1ff\\\",\\\"badge.foreground\\\":\\\"#676b79\\\",\\\"progressBar.background\\\":\\\"#b084eb\\\",\\\"button.background\\\":\\\"#45a9f9\\\",\\\"button.foreground\\\":\\\"#ffffff\\\",\\\"button.hoverBackground\\\":\\\"#676b79\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#19f9d866\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#ff4b8266\\\",\\\"merge.currentHeaderBackground\\\":\\\"#b084eb90\\\",\\\"merge.currentContentBackground\\\":\\\"#b084eb40\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#45a9f990\\\",\\\"merge.incomingContentBackground\\\":\\\"#ffb86c40\\\",\\\"editor.background\\\":\\\"#292a2b\\\",\\\"editor.foreground\\\":\\\"#e6e6e6\\\",\\\"editorCursor.foreground\\\":\\\"#ff4b82\\\",\\\"editorRuler.foreground\\\":\\\"#b084eb60\\\",\\\"editorBracketMatch.border\\\":\\\"#19f9d8\\\",\\\"editorCodeLens.foreground\\\":\\\"#ffb86c40\\\",\\\"editorWhitespace.foreground\\\":\\\"#4e5260\\\",\\\"editor.selectionBackground\\\":\\\"#ffb86c40\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#ffb86c40\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#ffb86c40\\\",\\\"editor.wordHighlightBackground\\\":\\\"#ffcc9560\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#ff9ac170\\\",\\\"editor.findMatchBackground\\\":\\\"#b084eb90\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#ffb86c40\\\",\\\"editor.lineHighlightBackground\\\":\\\"#31353a\\\",\\\"editorWidget.background\\\":\\\"#2a2c2d\\\",\\\"editorWidget.border\\\":\\\"#373b41\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#19f9d899\\\",\\\"editorHoverWidget.background\\\":\\\"#31353a\\\",\\\"editorOverviewRuler.border\\\":\\\"#00000000\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#ffcc95\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#19f9d8\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#ff4b82\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#ff4b82\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#ffcc95\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#6fc1ff\\\",\\\"extensionButton.prominentForeground\\\":\\\"#ffffff\\\",\\\"extensionButton.prominentBackground\\\":\\\"#45a9f9\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#676b79\\\",\\\"editorError.foreground\\\":\\\"#ff4b82\\\",\\\"editorError.border\\\":\\\"#ff4b82\\\",\\\"editorWarning.foreground\\\":\\\"#ffcc95\\\",\\\"editorWarning.border\\\":\\\"#ffcc95\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#ffcc95\\\",\\\"editorGutter.addedBackground\\\":\\\"#19f9d8\\\",\\\"editorGutter.deletedBackground\\\":\\\"#ff4b82\\\",\\\"list.hoverBackground\\\":\\\"#292a2b\\\",\\\"list.hoverForeground\\\":\\\"#cdcdcd\\\",\\\"list.focusBackground\\\":\\\"#292a2b\\\",\\\"list.focusForeground\\\":\\\"#19f9d8\\\",\\\"list.activeSelectionBackground\\\":\\\"#292a2b\\\",\\\"list.activeSelectionForeground\\\":\\\"#19f9d8\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#292a2b\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#19f9d8\\\",\\\"list.highlightForeground\\\":\\\"#6fc1ff\\\",\\\"sideBar.background\\\":\\\"#242526\\\",\\\"sideBar.foreground\\\":\\\"#bbbbbb\\\",\\\"sideBar.border\\\":\\\"#222223\\\",\\\"scrollbar.shadow\\\":\\\"#222223\\\",\\\"scrollbarSlider.background\\\":\\\"#373b4199\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#757575\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#757575\\\",\\\"statusBar.background\\\":\\\"#222223\\\",\\\"statusBar.foreground\\\":\\\"#e6e6e6\\\",\\\"statusBar.noFolderBackground\\\":\\\"#242526\\\",\\\"statusBar.noFolderForeground\\\":\\\"#e6e6e6\\\",\\\"statusBar.debuggingBackground\\\":\\\"#b084eb\\\",\\\"statusBar.debuggingForeground\\\":\\\"#e6e6e6\\\",\\\"titleBar.activeBackground\\\":\\\"#242526\\\",\\\"titleBar.activeForeground\\\":\\\"#e6e6e6\\\",\\\"titleBar.inactiveBackground\\\":\\\"#242526\\\",\\\"titleBar.inactiveForeground\\\":\\\"#e6e6e6\\\",\\\"tab.activeBackground\\\":\\\"#292a2b\\\",\\\"tab.activeForeground\\\":\\\"#19f9d8\\\",\\\"tab.activeBorder\\\":\\\"#19f9d8\\\",\\\"tab.inactiveBackground\\\":\\\"#242526\\\",\\\"tab.inactiveForeground\\\":\\\"#e6e6e6\\\",\\\"terminalCursor.background\\\":\\\"#e6e6e6\\\",\\\"terminalCursor.foreground\\\":\\\"#ff4b82\\\",\\\"terminal.ansiBlue\\\":\\\"#45a9f9\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#757575\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#6fc1ff\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#bcaafe\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#19f9d8\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#ff9ac1\\\",\\\"terminal.ansiBrightRed\\\":\\\"#ff2c6d\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#e6e6e6\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#ffcc95\\\",\\\"terminal.ansiCyan\\\":\\\"#b084eb\\\",\\\"terminal.ansiGreen\\\":\\\"#19f9d8\\\",\\\"terminal.ansiMagenta\\\":\\\"#ff75b5\\\",\\\"terminal.ansiRed\\\":\\\"#ff2c6d\\\",\\\"terminal.ansiWhite\\\":\\\"#cdcdcd\\\",\\\"terminal.ansiYellow\\\":\\\"#ffb86c\\\"},\\\"watch\\\":false}\",\"memento/gettingStartedService\":\"{\\\"pickColorTheme\\\":{\\\"done\\\":true},\\\"pickColorThemeWeb\\\":{\\\"done\\\":true},\\\"settings\\\":{\\\"done\\\":true},\\\"splitview\\\":{\\\"done\\\":true},\\\"debugging\\\":{\\\"done\\\":true},\\\"commandPaletteTask\\\":{\\\"done\\\":true},\\\"commandPaletteTaskWeb\\\":{\\\"done\\\":true},\\\"terminal\\\":{\\\"done\\\":true},\\\"vmware.vscode-boot-dev-pack#springBootWelcome#run-your-spring-projects\\\":{\\\"done\\\":true}}\",\"workbench.welcomePage.walkthroughMetadata\":\"[[\\\"vscjava.vscode-java-pack#javaWelcome\\\",{\\\"firstSeen\\\":1658738304264,\\\"stepIDs\\\":[\\\"java.runtime\\\",\\\"java.showProjectExplorer\\\",\\\"java.showProjectExplorer.inactive\\\",\\\"java.debugAndTest\\\",\\\"java.extensions\\\",\\\"java.more\\\",\\\"java.moreForMac\\\"],\\\"manaullyOpened\\\":false}],[\\\"vscode.typescript-language-features#nodejsWelcome\\\",{\\\"firstSeen\\\":1670504852757,\\\"stepIDs\\\":[\\\"walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows\\\",\\\"walkthroughs.nodejsWelcome.downloadNode.forLinux\\\",\\\"walkthroughs.nodejsWelcome.makeJsFile\\\",\\\"walkthroughs.nodejsWelcome.debugJsFile\\\",\\\"walkthroughs.nodejsWelcome.learnMoreAboutJs\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-azuretools.vscode-docker#dockerStart\\\",{\\\"firstSeen\\\":1689746649404,\\\"stepIDs\\\":[\\\"openFolder\\\",\\\"openFolderMac\\\",\\\"scaffold\\\",\\\"buildImage\\\",\\\"runContainer\\\",\\\"dockerExplorer\\\",\\\"pushImage\\\",\\\"azDeploy\\\",\\\"learn\\\"],\\\"manaullyOpened\\\":false}],[\\\"vmware.vscode-boot-dev-pack#springBootWelcome\\\",{\\\"firstSeen\\\":1697440349469,\\\"stepIDs\\\":[\\\"new-project-using-initializr\\\",\\\"explore-your-spring-projects\\\",\\\"run-your-spring-projects\\\",\\\"live-information-for-your-running-spring-app\\\"],\\\"manaullyOpened\\\":false}],[\\\"eamodio.gitlens#gitlens.welcome\\\",{\\\"firstSeen\\\":1703498975266,\\\"stepIDs\\\":[\\\"gitlens.welcome.tutorial\\\",\\\"gitlens.welcome.sidebars\\\",\\\"gitlens.welcome.currentLineBlame\\\",\\\"gitlens.welcome.fileAnnotations\\\",\\\"gitlens.welcome.revisionHistory\\\",\\\"gitlens.welcome.commitGraph\\\",\\\"gitlens.welcome.workspaces\\\",\\\"gitlens.welcome.hostingServiceIntegrations\\\",\\\"gitlens.welcome.labs\\\",\\\"gitlens.welcome.preview\\\",\\\"gitlens.welcome.trial\\\",\\\"gitlens.welcome.services\\\",\\\"gitlens.welcome.additional\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonWelcome\\\",{\\\"firstSeen\\\":1703498975266,\\\"stepIDs\\\":[\\\"python.createPythonFile\\\",\\\"python.installPythonWin8\\\",\\\"python.installPythonMac\\\",\\\"python.installPythonLinux\\\",\\\"python.selectInterpreter\\\",\\\"python.createEnvironment\\\",\\\"python.runAndDebug\\\",\\\"python.learnMoreWithDS\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonWelcome2\\\",{\\\"firstSeen\\\":1703498975266,\\\"stepIDs\\\":[\\\"python.createPythonFolder\\\",\\\"python.createPythonFile\\\",\\\"python.installPythonWin8\\\",\\\"python.installPythonMac\\\",\\\"python.installPythonLinux\\\",\\\"python.createEnvironment2\\\",\\\"python.runAndDebug\\\",\\\"python.learnMoreWithDS2\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonDataScienceWelcome\\\",{\\\"firstSeen\\\":1703498975266,\\\"stepIDs\\\":[\\\"python.installJupyterExt\\\",\\\"python.createNewNotebook\\\",\\\"python.openInteractiveWindow\\\",\\\"python.dataScienceLearnMore\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-vscode-remote.remote-wsl#wslWalkthrough\\\",{\\\"firstSeen\\\":1703498975266,\\\"stepIDs\\\":[\\\"explore.commands\\\",\\\"open.wslwindow\\\",\\\"create.project\\\",\\\"open.project\\\",\\\"linux.environment\\\",\\\"install.tools\\\",\\\"run.debug\\\",\\\"come.back\\\"],\\\"manaullyOpened\\\":false}]]\",\"commandPalette.mru.cache\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"extension.js-debug.createDebuggerTerminal\\\",\\\"value\\\":1},{\\\"key\\\":\\\"workbench.action.configureLocale\\\",\\\"value\\\":3},{\\\"key\\\":\\\"java.project.create\\\",\\\"value\\\":4},{\\\"key\\\":\\\"workbench.action.openWorkspaceSettingsFile\\\",\\\"value\\\":5},{\\\"key\\\":\\\"workbench.action.openSettingsJson\\\",\\\"value\\\":6},{\\\"key\\\":\\\"java.clean.workspace\\\",\\\"value\\\":91},{\\\"key\\\":\\\"maven.goal.execute\\\",\\\"value\\\":92}]}\",\"commandPalette.mru.counter\":\"93\",\"workbench.view.extension.test.state.hidden\":\"[{\\\"id\\\":\\\"workbench.view.testing\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.view.testCoverage\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.svnActivity.state.hidden\":\"[{\\\"id\\\":\\\"repolog\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"itemlog\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"branchchanges\\\",\\\"isHidden\\\":false}]\",\"snippets.usageTimestamps\":\"[[\\\"snippets/html.json/scope\\\",1660296692201],[\\\"snippets/html.json/ref\\\",1661413148880],[\\\"snippets/javascript.json/updated\\\",1661437766076],[\\\"snippets/javascript.code-snippets/Set Interval Function\\\",1661824833861],[\\\"snippets/javascript.code-snippets/New Statement\\\",1665718239293],[\\\"snippets/javascript.json/stopPropagation\\\",1680856783367],[\\\"snippets/java.json/main\\\",1684227924764],[\\\"snippets/java.json/newObject\\\",1684230165419],[\\\"snippets/javascript.json/actions\\\",1684837775046],[\\\"snippets/javascript.json/comments\\\",1691994110846],[\\\"snippets/html.json/leave-active-class\\\",1695125949281],[\\\"snippets/vue.json/styleLang\\\",1695195493360],[\\\"snippets/javascript.json/computed\\\",1695268185257],[\\\"snippets/html.json/routerView\\\",1697513116910],[\\\"snippets/javascript.code-snippets/Log error to console\\\",1698719823858],[\\\"snippets/javascript.json/vm.$isServer\\\",1698741587234],[\\\"snippets/javascript.json/setup\\\",1700617930080],[\\\"snippets/javascript.json/name\\\",1700708281402],[\\\"snippets/html.json/v-html\\\",1702437350978],[\\\"snippets/javascript.json/parent\\\",1702446466346],[\\\"snippets/html.json/after-enter\\\",1703040695116],[\\\"snippets/javascript.json/filters\\\",1703817112435],[\\\"snippets/javascript.json/triggerRef\\\",1709295611818],[\\\"snippets/javascript.json/created\\\",1710431249681],[\\\"snippets/javascript.json/mounted\\\",1710431253241],[\\\"snippets/javascript.json/watch\\\",1710738067235],[\\\"snippets/javascript.json/methods\\\",1710738088526],[\\\"snippets/javascript.json/data\\\",1710738178007],[\\\"snippets/javascript.code-snippets/If Statement\\\",1710930732327],[\\\"snippets/javascript.code-snippets/For Loop\\\",1711357998561],[\\\"snippets/javascript.json/children\\\",1711519512033],[\\\"snippets/javascript.code-snippets/For-Each Loop\\\",1711519519071],[\\\"snippets/javascript.code-snippets/Log to the console\\\",1714371235999],[\\\"snippets/javascript.json/globalProperties\\\",1715755934267],[\\\"snippets/html.json/template\\\",1715761335445],[\\\"snippets/vue.json/script\\\",1715761356110],[\\\"snippets/typescript.code-snippets/For-Each Loop using =>\\\",1716284284181],[\\\"snippets/html.json/v-cloak\\\",1716344677031],[\\\"snippets/typescript.code-snippets/Log to the console\\\",1716357534124],[\\\"snippets/html.json/v-if\\\",1716363852312],[\\\"snippets/javascript.json/importFromVue\\\",1716381475667],[\\\"snippets/javascript.json/state\\\",1716881120386],[\\\"snippets/javascript.json/optionMergeStrategies\\\",1716881263589]]\",\"expandSuggestionDocs\":\"true\",\"cpp.1.lastSessionDate\":\"Thu Dec 08 2022\",\"cpp.1.sessionCount\":\"2\",\"java.2.lastSessionDate\":\"Thu Dec 08 2022\",\"java.2.sessionCount\":\"2\",\"javascript.1.lastSessionDate\":\"Thu Dec 08 2022\",\"javascript.1.sessionCount\":\"2\",\"typescript.1.lastSessionDate\":\"Thu Dec 08 2022\",\"typescript.1.sessionCount\":\"2\",\"terminal.integrated.showTerminalConfigPrompt\":\"false\",\"memento/workbench.editor.keybindings\":\"{\\\"searchHistory\\\":[\\\"终端\\\",\\\"git\\\",\\\"命令 \\\",\\\"命令面板\\\",\\\"\\\\\\\"ctrl+-\\\\\\\"\\\",\\\"名利\\\",\\\"\\\\\\\"ctrl+numpad_subtract\\\\\\\"\\\",\\\" \\\",\\\"命令\\\",\\\"ct\\\",\\\"ctr\\\",\\\"ctrl\\\",\\\"ctrl + \\\",\\\"ctrl + j\\\",\\\"gitl\\\",\\\"g\\\",\\\"gitle\\\",\\\"gitlens\\\"]}\",\"userDataProfiles.state.hidden\":\"[{\\\"id\\\":\\\"workbench.views.profiles.export.preview\\\",\\\"isHidden\\\":false}]\",\"themeUpdatedNotificationShown\":\"true\",\"fileBasedRecommendations/promptedRecommendations\":\"{\\\"java\\\":[\\\"vscjava.vscode-java-pack\\\"],\\\"python\\\":[\\\"ms-python.python\\\"],\\\"vue\\\":[\\\"vue.volar\\\"]}\",\"workbench.view.extension.dockerView.state.hidden\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\",\"tabs-list-width-horizontal\":\"276\",\"workbench.view.extension.references-view.state.hidden\":\"[{\\\"id\\\":\\\"references-view.tree\\\",\\\"isHidden\\\":false}]\",\"workbench.view.remote.state.hidden\":\"[{\\\"id\\\":\\\"github.codespaces.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github.codespaces.warnExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github.codespaces.performanceExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false}]\",\"remote.explorerType\":\"codespaces\",\"workbench.view.extension.bito-activitybar.state.hidden\":\"[{\\\"id\\\":\\\"activateBito.sidebar\\\",\\\"isHidden\\\":false}]\",\"~remote.forwardedPortsContainer.hidden\":\"[{\\\"id\\\":\\\"~remote.forwardedPorts\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.spring.state.hidden\":\"[{\\\"id\\\":\\\"spring.apps\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"spring.beans\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"spring.mappings\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"spring.properties\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"spring.memoryView\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlens.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.home\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.workspaces\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.account\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.drafts\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlensInspect.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.commitDetails\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.pullRequest\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlensPanel.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.graph\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.graphDetails\\\",\\\"isHidden\\\":false}]\",\"workbench.activityBar.location\":\"default\",\"workbench.auxiliarybar.pinnedPanels\":\"[]\",\"views.customizations\":\"{\\\"viewContainerLocations\\\":{},\\\"viewLocations\\\":{},\\\"viewContainerBadgeEnablementStates\\\":{}}\",\"workbench.view.extension.TongyiLingma.state.hidden\":\"[{\\\"id\\\":\\\"TongyiLingMa.Chat\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.sqltoolsActivityBarContainer.state.hidden\":\"[{\\\"id\\\":\\\"sqltoolsViewConnectionExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewBookmarksExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqltoolsViewHistoryExplorer\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.sqltoolsPanelContainer.state.hidden\":\"[{\\\"id\\\":\\\"sqltoolsViewConsoleMessages\\\",\\\"isHidden\\\":false}]\"}}"}

新建xx.code-profile文件并把上面的代码保存到该文件里,接着打开安装好的vscode,在窗口左下角找到螺母⚙并点击

 在配置文件一项选中导入配置文件,接着vscode窗口顶部中间就会出现一个选择的地方👇

 点击选择文件,选择你新建的xx.code-profile,导入即可,最后vscode就会疯狂下载插件,

插件内容包含了前端基本上都要用到的诸如编译器字体汉化、框架(react/vue)插件配置、浏览器插件、各种语言脚本语法配置、以及git版本管理器等。

 

六:Google Chrome

官网:https://www.google.cn/chrome/index.html

下载:https://www.google.cn/chrome/next-steps.html?statcb=1&installdataindex=empty&defaultbrowser=0

 

七:微信开发者工具

下载:https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html

 

八:Navicat-Premium

官网:https://www.navicat.com.cn/download/navicat-premium

下载:https://www.navicat.com.cn/download/direct-download?product=navicat170_premium_cs_x64.exe&location=1

 

九:HarmonyOS

官网:https://developer.huawei.com/consumer/cn/develop-novice-guide/

下载:https://developer.huawei.com/consumer/cn/deveco-studio/

 

结语:以上工具适合做常规小程序、常规网页开发、移动端鸿蒙HarmonyOS开发的内容。

 

posted @ 2024-06-06 13:04  叶乘风  阅读(25)  评论(0编辑  收藏  举报