vscode设置

{
    "workbench.iconTheme": "vscode-great-icons",
    "workbench.colorTheme": "One Monokai",
    "sublimeTextKeymap.promptV3Features": true,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.snippetSuggestions": "top",
    
    "files.autoSave": "onFocusChange",
    "editor.fontSize": 16,
    "editor.showFoldingControls": "always",
    "editor.renderLineHighlight": "gutter",
    "emmet.syntaxProfiles": {
        "vue-html": "html",
        "vue": "html"
    },
    "workbench.colorCustomizations": {
        "editorLineNumber.foreground": "#93979E"
    },
    "editor.minimap.showSlider": "always",
    "explorer.confirmDelete": false,
    "gitlens.advanced.messages": {
        "suppressCommitHasNoPreviousCommitWarning": false,
        "suppressCommitNotFoundWarning": false,
        "suppressFileNotUnderSourceControlWarning": false,
        "suppressGitVersionWarning": false,
        "suppressLineUncommittedWarning": false,
        "suppressNoRepositoryWarning": false,
        "suppressResultsExplorerNotice": false,
        "suppressShowKeyBindingsNotice": true,
        "suppressUpdateNotice": false,
        "suppressWelcomeNotice": true
    },
    "git.enableSmartCommit": true,
    "git.autofetch": true,
    "emmet.triggerExpansionOnTab": true,
    "editor.tabSize": 2,
    "gitlens.keymap": "alternate",
    "editor.parameterHints": false,
    "autoprefixer.formatOnSave": true,
    "color-highlight.markerType": "underline",
    "editor.colorDecorators": true,
    "editor.renderControlCharacters": true,
    "window.openFilesInNewWindow": "on",
    
    "files.associations": {
        "*.art":"html",
        "*.wxml":"html",
        "*.wxss":"css"
    },
    "editor.wordWrap": "on",
    "gitlens.historyExplorer.enabled": true
}

猜你喜欢

转载自www.cnblogs.com/ak-b/p/9239978.html