【VS Code+Verilog+Vivado使用】(5)VS Code配置文件

文章目录

  • 5 VS Code配置文件

5 VS Code配置文件

现附上个人VS Code配置文件settings.json的内容:

{
   //
   "verilog.linting.linter": "xvlog",
   "verilog.ctags.path": "ctags",
   //
   "workbench.iconTheme": "vscode-icons",
   "workbench.colorCustomizations": {
      "editor.selectionBackground": "#53dbaeb2",
      "editor.selectionHighlightBackground": "#53dbaeb2"
   },
   //
   "editor.detectIndentation": false,
   "editor.tabSize": 3,
   "editor.multiCursorModifier": "ctrlCmd",
   "editor.mouseWheelZoom": true,
   // TODO Tree Settings   
   "todo-tree.tree.buttons.scanMode": true,
   "todo-tree.tree.showCountsInTree": true,
   "todo-tree.filtering.excludeGlobs": [
      "*.cache",
      "*.hw",
      "*.ip_user_files",
      "*.runs",
      "*.sim"
   ],   
   "todo-tree.highlights.defaultHighlight": {
      "gutterIcon" : true
   },
   "todo-tree.general.tags": [
      "bug-exist : ",
      "bug-fixed : ",
      "next-todo : "
   ],
   "todo-tree.highlights.customHighlight": {
      "bug-exist : ": {
         "icon": "bug",
         "foreground": "#FF0000",
         "type": "line"
      },
      "bug-fixed : ": {
         "icon": "flame",         
         "foreground": "#FF00FF",
         "type":"line"
      },
      "next-todo : ":{         
         "icon": "checklist",
         "foreground": "#FFFF00",
         "type":"line"
      }
   }
}

你可能感兴趣的:(VS,Code,vscode)