美文网首页
VSCode自用插件及配置文件

VSCode自用插件及配置文件

作者: 科科Cole | 来源:发表于2020-08-12 10:36 被阅读0次

记录日期:2020.08.12


插件名_作者_版本号 //插件功能

Atom One Dark Theme_Mahmoud Ali_2.2.2 //VSCode主题
Auto Close Tag_Jun Han_0.5.8 //html标签自动闭合
Babel JavaScript_Michael McDermott_0.0.29 //js语法提示
Beautify_HookyQR_1.5.0 //代码格式化
Bracket Pair Colorizer 2_CoenraadS_0.2.0 //括号颜色匹配
Chinese (Simplified) Language Pack for Visual Studio Code_Microsoft_1.48.1 //简体中文语言包
Code Runner_Jun Han_0.11.0
Color Highlight_Sergii Naumov_2.3.0
CSS Peek_Pranay Prakash_4.0.0 //CSS转到类名定义
Debugger for Chrome_Microsoft_4.12.9
ESLint_Dirk Baeumer_2.1.8
Git Graph_mhutchie_1.25.0 //Git分支图谱
GitLens-Git supercharged_Eric Amodio_10.2.2
HTML Boilerplate_sidthesloth_1.0.3 //html模板
Image preview_Kiss Tamas_0.26.2 //引入图像预览
JavaScript(ES6) code snippets_charalampos karypidis_1.8.0 //ES6语法提示
npm_egamma_0.3.13
npm Intellisense_Christian Kohler_1.3.0 //npm语法补全
One Dark Pro_binaryfy_3.8.5 //VSCode主题
open in browser_TechER_2.0.0
Path Intellisense_Christian Kohler_2.2.1 //路径补全
Prettier - Code formatter_Prettier_5.1.3 //代码格式化
Regex Previewer_Christof Marti_0.2.0 //正则表达式预览
TODO Highlight_Wayou Liu_1.0.4 //TODO注释高亮
Vetur_Pine Wu_0.26.1
vscode-elm-jump_Joe Andaverde_0.0.1 //转到函数定义
vscode-faker_Budi Irawan_1.4.1 //生成假数据
vscode-icons_VSCode Icons Team_10.2.0 //VSCode文件层级视图图标
vue_jcbuisson_0.1.5
Vue 2 Snippets_hollowtree_0.1.12 //Vue2语法提示
Vue CSS Peek_CharlesWu_1.0.0
VueHelper_oysun_0.1.0 //Vue语法提示
VueThis$Store_victor_0.1.0 //Vuex提示

settings.json

{
    "files.autoSave": "afterDelay",
    "window.zoomLevel": 0,
    "editor.fontSize": 16,
    "editor.formatOnPaste": true,
    "editor.suggestSelection": "first",
    "eslint.alwaysShowStatus": true,
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "java.requirements.JDK11Warning": false,
    "[vue]": {
        "editor.defaultFormatter": "octref.vetur"
    },
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
            "wrap_line_length": 200,
            "wrap_attributes": "force",
            "end_with_newline": true
        },
        "prettyhtml": {
            "printWidth": 100,
            "singleQuote": false,
            "wrapAttributes": false,
            "sortAttributes": false
        }
    },
    "editor.minimap.enabled": true,
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "vetur.format.options.tabSize": 4,
    "task.slowProviderWarning": [
        "npm"
    ],
    "git.path": "C:/Program Files/Git/bin/git.exe",
    "files.exclude": {
        "**/.classpath": true,
        "**/.project": true,
        "**/.settings": true,
        "**/.factorypath": true
    },
    "java.semanticHighlighting.enabled": true,
    "workbench.colorTheme": "Atom One Dark",
    "terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
    "[html]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[jsonc]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "workbench.iconTheme": "vscode-icons",
    "files.autoSaveDelay": 1500,
    "html.format.wrapAttributes": "force",
    "[json]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
}

相关文章

网友评论

      本文标题:VSCode自用插件及配置文件

      本文链接:https://www.haomeiwen.com/subject/ogrpdktx.html