File tree Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ template :
2
+ baseUrl : /emanote-template/
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments