vscode 常用插件
Posted mengyilingjian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode 常用插件相关的知识,希望对你有一定的参考价值。
- 汉化插件:Chinese (Simplified) Language Pack for Visual Studio Code
- git相关:GitLens,git graph,Git Project Manager,Git Project Manager
- 标签配对:Auto Close Tag
- 自动导入:Auto Import
- 代码美化:Beautify
- 括号对齐高亮:Bracket Pair Colorizer
- 颜色信息及转换: Color Info
- 谷歌调试工具:Debugger for Chrome
- git:Git History
- 标签高亮:Highlight Matching Tag
- 图片实时查看:Image preview
- 注释插件:koroFileHeader
- 实时更新工具:Live Server
- mysql:MySQL
- 图标主题:Material Icon Theme
- 敲代码特效:Power Mode
- 远程代码实时更新插件(神器):SFTP
- 颜色拾取:VS Color Picker
- 深度对齐:Indenticator
- vim:vim
- 运行代码:Code Runner
- 配置插件管理(换机必备):Settings Sync
- 注释美化:Better Comments
// 常用配置
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"backgroundColor": "transparent"
}
]
以上是关于vscode 常用插件的主要内容,如果未能解决你的问题,请参考以下文章