-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtil.code-workspace
More file actions
38 lines (38 loc) · 672 Bytes
/
til.code-workspace
File metadata and controls
38 lines (38 loc) · 672 Bytes
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
{
"folders": [
{
"name": "🌴 Root",
"path": "."
},
{
"name": "📝 Posts",
"path": "src/pages/posts",
},
{
"name": "💡 Drafts",
"path": "src/pages/posts/draft"
},
{
"name": "⚙️ GitHub",
"path": ".github"
},
{
"name": "⚙️ VSCode",
"path": ".vscode"
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/2022-*": true,
"**/2023-*": true,
"**/2024-*": true,
"**/2025-*": true
},
"editor.wordWrap": "on"
}
}