Skip to content

Commit 817631f

Browse files
committed
Add VS Code workspace file
1 parent c627df9 commit 817631f

2 files changed

Lines changed: 34 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ node_modules/
1111
# IDE files
1212
.idea/
1313
.vscode/
14-
*.code-workspace
14+
# Keep the project workspace file
15+
!antora-dark-theme.code-workspace
1516

1617
# OS files
1718
.DS_Store

antora-dark-theme.code-workspace

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "."
5+
}
6+
],
7+
"settings": {
8+
"files.associations": {
9+
"*.hbs": "handlebars"
10+
},
11+
"editor.tabSize": 2,
12+
"editor.formatOnSave": true,
13+
"[css]": {
14+
"editor.defaultFormatter": "vscode.css-language-features"
15+
},
16+
"[javascript]": {
17+
"editor.defaultFormatter": "esbenp.prettier-vscode"
18+
},
19+
"[yaml]": {
20+
"editor.defaultFormatter": "redhat.vscode-yaml"
21+
},
22+
"asciidoc.preview.style": "",
23+
"asciidoc.preview.useEditorStyle": true
24+
},
25+
"extensions": {
26+
"recommendations": [
27+
"asciidoctor.asciidoctor-vscode",
28+
"redhat.vscode-yaml",
29+
"esbenp.prettier-vscode"
30+
]
31+
}
32+
}

0 commit comments

Comments
 (0)