个人vscode配置项
程序员文章站
2022-06-22 18:19:02
...
{
"terminal.integrated.confirmOnExit": true,
"workbench.editor.tabCloseButton": "right",
// 以下为编辑器配置
"editor.fontSize": 16, // 文字大小
"editor.tabSize": 2, // 使用 tab 缩紧的时候几个空格的位置
"editor.dragAndDrop": false, // 控制编辑器是否允许拖动来移动内容
"editor.detectIndentation": false, // 控制打开时候自动检测插入内容是 space 还是 tab
"editor.quickSuggestions": {
// 是否启用代码联想
"other": true, // 在注释和字符串外启用联想
"comments": true, // 注释中是否启用
"strings": true // 字符串中是否启用
}, // 编辑器保存时自动格式化
"csscomb.preset": {
"remove-empty-rulesets": true, // 移除空规则集
"always-semicolon": true, // 每个样式后面添加分号
"lines-between-rulesets": 1, // 每个规则集后面添加一个空行
"leading-zero": false, // 为 0 的属性是否要加 px
"unitless-zero": false, // 是否删除 0 值后面的单位
"quotes": "single", // 单引号还是双引号
"space-after-colon": " ", // 在属性的 : 后面空格
"space-before-colon": "", // 在属性的 : 前面空格
"space-after-combinator": " ", // 在子代选择器或者相邻选择器之类的符号后面加空格
"space-before-combinator": " ", // 在子代选择器或者相邻选择器之类的符号前面加空格
"strip-spaces": true, // 修剪尾随空格
"vendor-prefix-align": false // 是否在属性值中对齐前缀
},
"window.restoreWindows": "one",
"update.mode": "manual",
"update.showReleaseNotes": false,
"update.enableWindowsBackgroundUpdates": false,
"explorer.confirmDragAndDrop": false,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDelete": false,
"search.followSymlinks": false,
"files.autoSave": "afterDelay",
"editor.formatOnType": true,
"less.compile": {
"out": "../css/"
},
"launch": {
"configurations": [],
"compounds": []
},
"security.workspace.trust.untrustedFiles": "open",
"window.zoomLevel": 2,
"grunt.autoDetect": "on",
"workbench.startupEditor": "none",
"oneDarkPro.vivid": true,
"cssrem.rootFontSize": 24,
"cssrem.fixedDigits": 3,
"cssrem.autoRemovePrefixZero": false,
"liveServer.settings.donotShowInfoMsg": true,
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"workbench.editor.enablePreview": false,
"editor.codeActionsOnSave": null
}
这些内容复制到settings.json中 需要修改的话可以按照我 标注的注释 来进行修改 然后重启vscode 就会覆盖运作了
推荐阅读
-
linux下vscode的c++工程配置
-
配置c3p0-config.xml数据库连接池,jdbcurl配置项报错Type The reference to entity "useUnicode" must end with the ';' delimiter.
-
在VSCode中如何配置Python开发环境
-
聊天机器人并不适合每一项业务和每个人
-
vscode配置vue下的es6规范自动格式化详解
-
hadoop入门之hdfs的重要配置项的说明
-
详解关于php的xdebug配置(编辑器vscode)
-
macOS系统下Vscode的python配置教程
-
Visual Studio Code (vscode) 配置 C / C++ 环境
-
vue 函数配置项watch以及函数 $watch 源码分享