-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2lang.code-workspace
51 lines (46 loc) · 1.18 KB
/
2lang.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.insertFinalNewline": true,
"editor.rulers": [80, 120],
"cSpell.words": [
"docgen",
"debouncer",
// ELF header names
"EHDR",
"PHOFF",
"SHOFF",
"EHSIZE",
"PHENTSIZE",
"SHENTSIZE",
"PHNUM",
"SHNUM",
"SHSTRNDX",
// NASM
"NASM",
"SYSCALL",
],
"workbench.iconTheme": "material-icon-theme",
},
"extensions": {
"recommendations": [
// standardization
"editorconfig.editorconfig",
"streetsidesoftware.code-spell-checker",
"pkief.material-icon-theme",
// working with the CLI
"dustypomerleau.rust-syntax",
"rust-lang.rust-analyzer",
"swellaby.vscode-rust-test-adapter",
// working with low level assembler output / binary files
"qiaojie.binary-viewer",
"valentin.beamdasm",
// bash support
"valentin.beamdasm",
]
}
}