-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBenEaterSV.code-workspace
107 lines (107 loc) · 2.7 KB
/
BenEaterSV.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"folders": [
{
"path": "."
}
],
"settings": {
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 131,
"files.trimTrailingWhitespace": false
},
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.formatOnSave": true,
"editor.dragAndDrop": false,
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
},
"markdownlint.config": {
"MD001": false, // Heading levels should only increment by one level at a time
"MD033": false // no inline HTML
},
"cSpell.words": [
"clk",
"tcyc"
],
"cSpell.allowCompoundWords": true,
"cSpell.diagnosticLevel": "Hint",
"terminal.integrated.fontSize": 11,
"workbench.editor.enablePreview": false,
"verilog.linting.verilator.arguments": "-sv --language 1800-2012 --trace-fst -v /home/kenj/Dev/oss-cad-suite/share/yosys/ice40/cells_sim.v -Irtl -Wall -Wno-DECLFILENAME -Wno-STMTDLY -DNO_ICE40_DEFAULT_ASSIGNMENTS",
"verilog.linting.linter": "verilator",
"todo-tree.highlights.defaultHighlight": {
"icon": "alert",
"type": "text",
"foreground": "#F00",
"opacity": 50,
"iconColour": "#FF0"
},
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"NOTE",
"TODO"
],
"todo-tree.highlights.customHighlight": {
"HACK": {
"icon": "$(gear)",
"foreground": "#8000FF",
"iconColour": "problemsInfoIcon.foreground",
"type": "tag",
"gutterIcon": true
},
"BUG": {
"icon": "$(bug)",
"foreground": "#FF4000",
"iconColour": "problemsErrorIcon.foreground",
"type": "tag",
"gutterIcon": true
},
"FIXME": {
"icon": "$(flame)",
"foreground": "#FF0000",
"iconColour": "problemsErrorIcon.foreground",
"type": "tag",
"gutterIcon": true
},
"NOTE": {
"icon": "$(note)",
"foreground": "#00FF00",
"iconColour": "editorHint.foreground",
"type": "tag",
"gutterIcon": true
},
"TODO": {
"icon": "$(check)",
"foreground": "#FFFF00",
"iconColour": "problemsWarningIcon.foreground",
"type": "tag",
"gutterIcon": true
}
},
"files.associations": {
"*.sv": "systemverilog"
},
"workbench.colorCustomizations": {
"terminal.foreground": "#18E818",
"terminalCursor.foreground": "#E0E0E0",
},
"editor.wordWrapColumn": 200,
"files.trimTrailingWhitespace": true,
"rewrap.autoWrap.enabled": true,
"rewrap.wrappingColumn": 120,
"markdown.extension.italic.indicator": "*",
"rewrap.reformat": true,
"explorer.sortOrder": "type",
"search.quickOpen.history.filterSortOrder": "recency",
"verilog.logging.enabled": true,
"makefile.extensionOutputFolder": "./.vscode"
}
}