vscode 安装插件,和相关配置
安装插件,配置对应的用户设置,进行替换,实现插件功能的生效
{
// 控制是否在搜索中跟踪符号链接。
"search.followSymlinks": false,
"editor.minimap.enabled": true,
"workbench.colorTheme": "Dracula",
"git.ignoreMissingGitWarning": true,
"window.zoomLevel": ,
"files.autoSave": "afterDelay",
"editor.tabSize": ,
"html.format.enable": true,
"javascript.format.enable": true,
"auto-close-tag.activationOnLanguage": [
"xml",
"HTML (Eex)"
],
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue"
],
"eslint.options": {
"plugins": [
"html"
]
},
// 以像素为单位控制字号。
"editor.fontSize": ,
// 以像素为单位控制字符间距。
"editor.letterSpacing": 0.1,
// 控制行高。使用 0 通过字号计算行高。
"editor.lineHeight": ,
"editor.wordWrap": "on",
// Whether to close self-closing tag automatically
"auto-close-tag.enableAutoCloseSelfClosingTag": true,
// Whether to insert close tag automatically
"auto-close-tag.enableAutoCloseTag": true,
// Set the tag list that would not be auto closed.
"auto-close-tag.excludedTags": [
"area",
"base",
"br",
"col",
"command",
"embed",
"hr",
"img",
"input",
"keygen",
"link",
"meta",
"param",
"source",
"track",
"wbr"
],
// Use color decorators in vue
"vetur.colorDecorators.enable": true,
// Include completion for module export and auto import them
"vetur.completion.autoImport": true,
// Enable/disable Vetur's built-in scaffolding snippets
"vetur.completion.useScaffoldSnippets": true,
// Default formatter for <style> region
"vetur.format.defaultFormatter.css": "prettier",
// Default formatter for <template> region
"vetur.format.defaultFormatter.html": "none",
// Default formatter for <script> region
"vetur.format.defaultFormatter.js": "prettier",
// Default formatter for <style lang='less'> region
"vetur.format.defaultFormatter.less": "prettier",
// Default formatter for <style lang='postcss'> region
"vetur.format.defaultFormatter.postcss": "prettier",
// Default formatter for <style lang='scss'> region
"vetur.format.defaultFormatter.scss": "prettier",
// Default formatter for <style lang='stylus'> region
"vetur.format.defaultFormatter.stylus": "stylus-supremacy",
// Default formatter for <script> region
"vetur.format.defaultFormatter.ts": "prettier",
// Options for all default formatters
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {}
},
// Whether to have initial indent for <script> region
"vetur.format.scriptInitialIndent": false,
// Whether to have initial indent for <style> region
"vetur.format.styleInitialIndent": false,
// Mapping from custom block tag name to language name. Used for generating grammar to support syntax highlighting for custom blocks.
"vetur.grammar.customBlocks": {
"docs": "md",
"i18n": "json"
},
// Traces the communication between VS Code and Vue Language Server.
"vetur.trace.server": "off",
// Validate js/ts in <script>
"vetur.validation.script": true,
// Validate css/scss/less/postcss in <style>
"vetur.validation.style": true,
// Validate vue-html in <template> using eslint-plugin-vue
"vetur.validation.template": true,
"window.menuBarVisibility": "visible",
"workbench.tree.horizontalScrolling": true,
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": false,
"window.titleBarStyle": "custom",
"editor.fontLigatures": true,
"editor.fontWeight": "",
"editor.formatOnSave": true,
"editor.formatOnType": true,
// Press the Enter key to activate a command (Default: false)
"docomment.activateOnEnter": false,
// User-controllable options
"docomment.advanced": {
"cs": {
"namespace": {
"attributes": [
"summary"
]
},
"class": {
"attributes": [
"summary",
"typeparam"
]
},
"interface": {
"attributes": [
"summary",
"typeparam"
]
},
"struct": {
"attributes": [
"summary"
]
},
"enum": {
"attributes": [
"summary"
]
},
"delegate": {
"attributes": [
"summary",
"param",
"typeparam",
"returns"
]
},
"field": {
"attributes": [
"summary"
]
},
"property": {
"attributes": [
"summary",
"value"
]
},
"method": {
"attributes": [
"summary",
"param",
"typeparam",
"returns"
]
},
"event": {
"attributes": [
"summary"
]
}
}
},
// Insert spaces when pressing Tab.
"editor.insertSpaces": true,
// The number of spaces a tab is equal to.
"editor.tabSize":
}
vscode 安装插件,和相关配置的更多相关文章
- wxWidgets的安装编译、相关配置、问题分析处理
wxWidgets的安装编译.相关配置.问题分析处理 一.介绍部分 (win7 下的 GUI 效果图见 本篇文章的最后部分截图2张) wxWidgets是一个开源的跨平台的C++构架库(framewo ...
- vscode安装插件
十分简单,知道名字叫啥后,直接搜索,安装,就完了,还可以查看自己已经安装了哪些插件. step1 如图.png step2 image.png step 3 去网上查找想要安装的插件的名字 step ...
- VsCode安装Go的相关插件
今天在学习Go的时候,安装Go的相关插件,显示安装不上,但是右下角也一直会提示让你安装,当然你可以设置成忽略,为了开发效率,我选择了安装.然后出现了问题,一直Failed.在网上看到了很多的文章,不是 ...
- 阿里云卸载自带的JDK,安装JDK完成相关配置
0.预备工作 笔者的云服务器购买的是阿里云的轻量应用服务器,相比于云服务器ECS,轻量应用服务器是固定流量但是网络带宽较高,对于服务器来说,网络带宽是非常昂贵的,而带宽也决定了你的应用访问的流畅度,带 ...
- vscode 安装插件SVN 报vscode SVN not found
1.软件环境 svn客户端安装的是TortoiseSVN: vscode 安装的为SVN的插件: 2. 问题现象 vscode打开文件夹后右下角提示如下报错:SVN not found. Instal ...
- Sublime Text 3安装与使用,安装插件,快捷键,默认配置
本文是Sublime Text 全程指引 by Lucida (http://www.cnblogs.com/figure9/p/sublime-text-complete-guide.html)的笔 ...
- Ubuntu下安装JDK以及相关配置
1.查看系统位数,输入以下命令即可 getconf LONG_BIT 2.下载对应的JDK文件,我这里下载的是jdk-8u60-linux-64.tar.gz 3.创建目录作为JDK的安装目录,这里选 ...
- vscode Js 插件 Jshint 的配置
vscode这款编辑器让人用起来很舒服,但是刚刚入手的童鞋可能会对其插件的安装产生一些恐惧,虽然vscode提供了插件的搜索和安装,但是其中一些插件是需要一些软件或者包之类的东西做支撑的,并不是在vs ...
- ideaui安装破解、相关配置、JRebel破解
前言: Ideaui 2019(官网 https://www.jetbrains.com/idea/?fromMenu) 安装软件就简单啦,下载选择路径就完事了,注意文件名全英文: 但是按照咱们传 ...
随机推荐
- web负载均衡【总结归纳所有看过的资料的理论】
web负载均衡 在有些时候进行扩展是显而易见的,比如下载服务由于带宽不足而必须进行的扩展,但是,另一些时候,很多人一看到站点性能不尽如人意,就马上实施负载均衡等扩展手段,真的需要这样做吗?当然这个问题 ...
- “全栈2019”Java第九十八章:局部内部类访问作用域成员详解
难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java第 ...
- BZOJ 4719--天天爱跑步(LCA&差分)
4719: [Noip2016]天天爱跑步 Time Limit: 40 Sec Memory Limit: 512 MBSubmit: 1464 Solved: 490[Submit][Stat ...
- Spring Boot 入门系列
本系列博文版权 简书 面皮大师 所有,转载请标明原文及出处: http://www.jianshu.com/u/062bd8f1299c 项目地址: https://github.com/daleiw ...
- day4. python学习之字典
字典和列表是最常用的数据类型,字典是一种key-value的数据类型,用{ }表示 1.字典的特性:无序的,没有下标 2.字典的使用:增删改查 info = { '20181101':"zh ...
- docker入门之基础操作
docker,我们可以把docker当作是简单的虚拟机.但这个虚拟机不像vm一样安装系统.所以我们又称之为容器.你可以理解成,容器就是虚拟机 docker与vm的对比 vmware:下载镜像——安装系 ...
- 最新版IntelliJ IDEA2019.1破解教程(2019.04.08更新)
[原文链接]:https://www.tecchen.xyz/idea-crack.html 我的个人博客:https://www.tecchen.xyz,博文同步发布到博客园. 由于精力有限,对文章 ...
- 关于 maven 打包直接运行的 fat jar (uber jar) 时需要包含本地文件系统第三方 jar 文件的问题
关于maven打包fat jar (uber jar) 时需要包含本地文件系统第三方jar文件的问题,今天折腾了一整天.最后还是用了spring boot来做.下面是几篇关于打包的有参考价值的文章,以 ...
- HTML常用汇总
HTML注释 <!-- --> XHTML:就是要遵守XML规则的HTML标签 DHTML:包含html,js,等动态HTML 表单元素提交时提交的是name属性 get提交.post提交 ...
- python socket文件传输实现
简单版 server(服务端) import socket import subprocess import struct import json import os share_dir = r'E: ...