美文网首页
vscode settings.json 配置文件

vscode settings.json 配置文件

作者: wlianfu | 来源:发表于2021-04-01 15:45 被阅读0次
{
  "editor.tabSize": 4,
  "editor.fontSize": 14,
  "editor.fontWeight": 400,
  "window.zoomLevel": 0,
  "editor.cursorBlinking": "solid",
  "editor.cursorStyle": "block",
  "editor.minimap.enabled": true,
  "editor.fontFamily": "'Droid Sans Mono', 'PingFang SC'",
  "editor.codeLens": true,
  "todo-tree.tree.showScanModeButton": false,
  "editor.semanticTokenColorCustomizations": null,
  "files.autoGuessEncoding": false,
  "editor.fontLigatures": true,
  "editor.scrollBeyondLastLine": false,
  "clock.dateFormat": "mm-dd HH:MM",

  "editor.rulers": [
    100
  ],

  "search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/dist": true,
    "**/.git": true,
    "**/.vscode": true,
    "**/yarn.lock": true,
    "**/package.json": true,
    "**/webpack*.js": true,
    "**/package-lock.json": true,
    "**/fonts": true,
  },

  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    "**/node_modules": true,
    "**/.idea": true,
  },

  "editor.tokenColorCustomizations": {
    // 注释字体颜色
    "comments": "#b388ff",
    // "comments": "#43a047"
  },

  "workbench.colorCustomizations": {
    "editorCursor.foreground": "#f72e96",
    // 高亮当前行背景色
    "editor.lineHighlightBackground": "#EDF4FC",
    "editor.lineHighlightBorder": "#EDF4FC",
    // "editor.lineHighlightBackground": "#094771",
    // "editor.lineHighlightBorder": "#094771",
    // 行数区域字体颜色
    "editorLineNumber.foreground": "#43a047",
  },
  "window.title": "${activeEditorShort}${separator}${rootPath}",
}

相关文章

网友评论

      本文标题:vscode settings.json 配置文件

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