-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththisismydemo-blog.code-workspace
More file actions
127 lines (127 loc) · 2.81 KB
/
thisismydemo-blog.code-workspace
File metadata and controls
127 lines (127 loc) · 2.81 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.associations": {
"*.md": "markdown",
"*.toml": "toml",
"config.toml": "toml",
"frontmatter.json": "json"
},
"markdown.preview.breaks": true,
"markdown.preview.linkify": true,
"markdown.extension.toc.levels": "2..6",
"markdown.extension.preview.autoShowPreviewToSide": false,
"files.exclude": {
"**/public/**": true,
"**/resources/**": true,
"**/.hugo_build.lock": true
},
"search.exclude": {
"**/public/**": true,
"**/resources/**": true,
"**/themes/**/node_modules/**": true
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.md": "*.draft.md",
"config.toml": "frontmatter.json"
},
"editor.wordWrap": "on",
"editor.rulers": [72, 80],
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"tab.activeBorder": "#ff6b6b",
"activityBar.activeBorder": "#ff6b6b"
},
"emmet.includeLanguages": {
"hugo": "html"
},
"hugo.server.renderToDisk": false,
"github.copilot.nextEditSuggestions.enabled": true
},
"extensions": {
"recommendations": [
"eliostruyf.vscode-front-matter",
"budparr.language-hugo-vscode",
"yzhang.markdown-all-in-one",
"shd101wyy.markdown-preview-enhanced",
"bierner.markdown-mermaid",
"hediet.vscode-drawio",
"jebbs.plantuml",
"eamodio.gitlens",
"mhutchie.git-graph",
"streetsidesoftware.code-spell-checker",
"esbenp.prettier-vscode",
"redhat.vscode-yaml",
"fivethree.vscode-hugo-snippets",
"ritwickdey.liveserver",
"wayou.vscode-todo-highlight",
"christian-kohler.path-intellisense"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Hugo: Serve",
"type": "shell",
"command": "hugo",
"args": ["server", "-D", "--bind", "0.0.0.0"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new"
},
"problemMatcher": [],
"isBackground": true
},
{
"label": "Hugo: Build",
"type": "shell",
"command": "hugo",
"args": ["--minify"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false
},
"problemMatcher": []
},
{
"label": "Hugo: New Post",
"type": "shell",
"command": "hugo",
"args": ["new", "post/${input:postName}.md"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false
},
"problemMatcher": []
}
],
"inputs": [
{
"id": "postName",
"description": "Post filename (without .md extension)",
"default": "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}-new-post",
"type": "promptString"
}
]
},
"launch": {
"version": "0.2.0",
"configurations": []
}
}