-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.code-workspace
58 lines (58 loc) · 1.16 KB
/
project.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
{
"folders": [
{
"name": "posts",
"path": "content/posts"
},
{
"name": "drafts",
"path": "content/drafts"
},
{
"name": "project",
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"[yaml]": {
"editor.formatOnSave": true
},
"[markdown]": {
"editor.formatOnSave": true
},
"[html]": {
"editor.formatOnSave": false
},
"[xml]": {
"editor.formatOnSave": false
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.ruby-lsp": true,
"_dist": true,
"legacy": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.ruby-lsp": true,
"static/styles/output.css": true,
"static/js/**": true
},
"window.title": "${activeEditorShort}${separator}codethoughts.io",
"workbench.colorCustomizations": {
"sideBar.background": "#23170bcc"
}
},
"tasks": {
"version": "2.0.0",
"tasks": []
}
}