当前位置:网站首页>VSCode基础配置
VSCode基础配置
2022-07-06 09:17:00 【阿波次嘚】
1.安装VSCode(官网:https://code.visualstudio.com/)
2.安装以下插件(自主选择):
![]() | ![]() |
3.VSCode基础配置全选清空VSCode基础配置(也可以不清除)
tab按键设置为2个空格
使用格式化文档:在文件内容主体右键(html文件、vue文件...)
选择格式化文档插件
设置保存时自动格式化
设置编辑器字体大小
设置自动换行
勾选自动换行,取消勾选显示缩略图(右侧的下拉条变为正常)
设置文件图标主题 来源插件:vscode-icons
![]() | ![]() |
设置vue的用户代码片段:使用时:新建vue文件,直接输入vue 然后选择你命名的vue代码段然后按Tab键或者回车键当然vbase也很不错

{
"vue_learn_template": {
/* 快速生成快捷键 */
"prefix": "vue",
"body": [
"<template>",
"\t<div class=\"app\"></div>",
"</template>",
"<script>", "export default {", "\tdata() {", "\t\treturn {", "\t\t\tdata: null,", "\t\t};", "\t},", "\tmethods: {},", "\tmounted(){},", "\tcomputed: {},", "};", "</script>",
"<style lang=\"scss\" scoped>", ".app {
", "\tinput {
", "\t\toutline: 0;", "\t}", "}", "</style>"
],
"description": "vue基础模板" // 模板的描述
}
}

我的VSCode settings.json文件内容
{
"security.workspace.trust.untrustedFiles": "open",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.fontSize": 16,
"editor.formatOnSave": true,
"bracketPairColorizer.depreciation-notice": false,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"explorer.confirmDelete": false,
"workbench.editorAssociations": {
"*.docx": "default"
},
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"workbench.iconTheme": "vscode-icons",
"editor.mouseWheelZoom": true,
"editor.wordWrap": "on",
"workbench.colorTheme": "Community Material Theme Palenight High Contrast",
"editor.tabSize": 2,
"editor.renderWhitespace": "none",
"breadcrumbs.enabled": false,
"editor.fontFamily": "Fira Code Retina,Consolas, 'Courier New', monospace",
"editor.minimap.enabled": false,
"window.zoomLevel": 0.5,
"workbench.colorCustomizations": {
"activityBar.background": "#303030",//左侧菜单栏颜色
"titleBar.activeBackground": "#3e3e3e",//顶部菜单栏颜色
"titleBar.activeForeground": "#ffffff",//顶部菜单栏文字颜色
"editor.selectionHighlightBackground": "#999999",
"editor.selectionBackground":"#797979",
"terminal.background": "#000000",
"terminal.foreground": "#968eeb",
"terminalCursor.background": "#eaeaea",
"terminalCursor.foreground": "#eaeaea",
"debugConsole.infoForeground":"#1e9fff",
"debugConsole.warningForeground":"#ff781e",//调试 REPL 控制台中警告消息的前景色。
"debugConsole.errorForeground":"#a20000",//调试 REPL 控制台中错误消息的前景色。
//"debugConsole.sourceForeground":,//调试 REPL 控制台中源文件名的前景色。
//"debugConsoleInputIcon.foreground":,//调试控制台输入标记图标的前景色。
},
}
调整VSCode颜色请访问:https://code.visualstudio.com/api/references/theme-color
边栏推荐
猜你喜欢

RT-Thread API参考手册

分布式事务的实现方案

MySQL realizes read-write separation

Machine learning -- decision tree (sklearn)

arduino JSON数据信息解析

数据分析之缺失值填充(重点讲解多重插值法Miceforest)

A possible cause and solution of "stuck" main thread of RT thread

Linux yum安装MySQL

Kaggle竞赛-Two Sigma Connect: Rental Listing Inquiries(XGBoost)

Machine learning -- linear regression (sklearn)
随机推荐
RT thread API reference manual
B tree and b+ tree of MySQL index implementation
XML file explanation: what is XML, XML configuration file, XML data file, XML file parsing tutorial
Detailed explanation of Union [C language]
MySQL主从复制的原理以及实现
Composition des mots (sous - total)
Mysql的索引实现之B树和B+树
Contiki源码+原理+功能+编程+移植+驱动+网络(转)
Pytoch temperature prediction
选择法排序与冒泡法排序【C语言】
GNN的第一个简单案例:Cora分类
Using LinkedHashMap to realize the caching of an LRU algorithm
Gallery's image browsing and component learning
mysql实现读写分离
Some concepts often asked in database interview
Matlab learning and actual combat notes
gcc 编译选项
JS array + array method reconstruction
Nodejs connect mysql
Detailed explanation of express framework



