Skip to content

Commit 3629c93

Browse files
committed
1 parent e3f2bc6 commit 3629c93

File tree

4 files changed

+53
-0
lines changed

4 files changed

+53
-0
lines changed

docs/.deploy/github/index.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
template:
2+
baseUrl: /emanote-template/

docs/.vscode/extensions.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"yzhang.markdown-all-in-one",
6+
"svsool.markdown-memo",
7+
"bierner.markdown-checkbox",
8+
"houkanshan.vscode-markdown-footnote",
9+
"bierner.emojisense",
10+
"mdickin.markdown-shortcuts",
11+
"mushan.vscode-paste-image",
12+
"sean10.markless-sean10"
13+
]
14+
}

docs/.vscode/settings.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
// Avoid having to explicitly save notes
3+
"files.autoSave": "afterDelay",
4+
// Minimap is not useful for Markdown notes
5+
"editor.minimap.enabled": false,
6+
// Generally note files are not opened in duplicate tabs.
7+
// This also enables you to navigate to already open note in other split pane
8+
"workbench.editor.revealIfOpen": true,
9+
// For those that use daily notes, via vscode-memo extension
10+
"autoSnippet.snippets": [
11+
12+
{
13+
"pattern": "**/\\d{4}-\\d{2}-\\d{2}.md",
14+
// To specify the body of this snippet, see
15+
// https://github.com/Microsoft/vscode/issues/8102#issuecomment-423476360
16+
"snippet": "daily",
17+
}
18+
],
19+
"editor.formatOnSave": true,
20+
"editor.wordWrap": "on",
21+
"files.autoSaveDelay": 500,
22+
"pasteImage.insertPattern": "![[${imageFilePath}]]"
23+
// If use Git, these might be interesting:
24+
// "git.autofetch": true,
25+
// "git.postCommitCommand": "push"
26+
}

docs/index.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# For documentation and available settings, see
2+
# https://github.com/srid/emanote/blob/master/default/index.yaml
3+
4+
page:
5+
siteTitle: Emanote Template
6+
7+
template:
8+
theme: red
9+
sidebar:
10+
collapsed: false
11+
urlStrategy: pretty

0 commit comments

Comments
 (0)