美文网首页
VScode用户设置

VScode用户设置

作者: 曾亦 | 来源:发表于2018-10-18 16:52 被阅读0次

{

  "editor.tabSize": 2,

  "files.autoSave": "afterDelay",

  "editor.fontSize": 15,

  "workbench.activityBar.visible": true,

  "window.zoomLevel": 0,

  "files.exclude": {

    "**/.git": true,

    "**/.svn": true,

    "**/.hg": true,

    "**/CVS": true,

    "**/.DS_Store": true,

    "**/.vscode": true,

    "**/.gitignore": false,

    "**/.idea": true,

    "**/node_modules": true

  },

  "editor.multiCursorModifier": "alt",

  "workbench.statusBar.visible": true,

  "editor.wordWrap": "on",

  "liveServer.settings.port": 8088,

  "beautify.language": {

    "js": {

      "type": ["javascript", "json"],

      "filename": [".jshintrc", ".jsbeautify"]

    },

    "css": ["css", "less"],

    "html": ["htm", "html"]

  },

  "editor.quickSuggestions": {

    "other": true,

    "comments": false,

    "strings": true

  },

  "path-autocomplete.extensionOnImport": true,

  "editor.renderIndentGuides": true,

  "workbench.colorCustomizations": {

    "editor.selectionBackground": "#555555"

  },

  "workbench.iconTheme": "material-icon-theme",

  "editor.quickSuggestionsDelay": 0,

  "editor.suggestOnTriggerCharacters": true,

  "editor.acceptSuggestionOnCommitCharacter": false,

  "editor.acceptSuggestionOnEnter": "off",

  "editor.snippetSuggestions": "top",

  "editor.wordBasedSuggestions": false,

  "markdown.preview.markEditorSelection": false,

  "editor.fontFamily": "consolas, Monaco",

  // "markdown.enableExperimentalExtensionApi": true,

  "emmet.syntaxProfiles": {

    "vue-html": "html",

    "vue": "html",

    "wxml": "html"

  },

  "files.associations": {

    "*.wxss": "css",

    "*.cjson": "jsonc",

    "*.wxs": "javascript"

  },

  "emmet.includeLanguages": {

    "vue-html": "html",

    "vue": "html",

    "wxml": "html"

  },

  "emmet.triggerExpansionOnTab": true,

  "prettier.tabWidth": 2,

  "vetur.format.defaultFormatter.html": "js-beautify-html",

  "search.followSymlinks": false,

  "workbench.colorTheme": "One Dark Pro",

  "git.ignoreMissingGitWarning": true,

  "workbench.sideBar.location": "left",

  "explorer.confirmDelete": false,

  "explorer.confirmDragAndDrop": false,

  "minapp-vscode.disableAutoConfig": true,

  // 配置rem

  "cssrem.rootFontSize": 37.5,

  "cssrem.fixedDigits": 3,

  // 配置全局搜索

  "search.exclude": {

    "system/": true,

    "!/system/**/*.ps*": true

  }

}

相关文章

网友评论

      本文标题:VScode用户设置

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