-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosdev.code-workspace
More file actions
34 lines (34 loc) · 1.09 KB
/
osdev.code-workspace
File metadata and controls
34 lines (34 loc) · 1.09 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.trimTrailingWhitespace": true,
"files.exclude": {
".gdb_history": true,
".vscode/": true,
"*.code-workspace": true,
"**/*.d": true,
"**/*.o": true,
"**/bin/": true,
"**/dist/": true,
"**/obj/": true,
"lib/": true,
"libc/": true,
"tools/binutils-*": true,
"tools/build-*": true,
"tools/gcc-*": true,
"tools/gdb-*": true,
"tools/newlib-*": true
},
"editor.rulers": [
120
],
"files.eol": "\n",
"files.associations": {
"xutility": "cpp"
}
}
}