enable mermaid and excalidraw
This commit is contained in:
parent
4ea62dbb7c
commit
d2eaae549f
3
.vscode/extensions.json
vendored
3
.vscode/extensions.json
vendored
|
@ -1,8 +1,11 @@
|
||||||
{
|
{
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"bierner.emojisense",
|
"bierner.emojisense",
|
||||||
|
"bierner.markdown-mermaid",
|
||||||
|
"bpruitt-goddard.mermaid-markdown-syntax-highlighting",
|
||||||
"esbenp.prettier-vscode",
|
"esbenp.prettier-vscode",
|
||||||
"foam.foam-vscode",
|
"foam.foam-vscode",
|
||||||
|
"pomdtr.excalidraw-editor",
|
||||||
"vsls-contrib.gitdoc",
|
"vsls-contrib.gitdoc",
|
||||||
"yzhang.markdown-all-in-one",
|
"yzhang.markdown-all-in-one",
|
||||||
]
|
]
|
||||||
|
|
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
|
@ -1,5 +1,8 @@
|
||||||
{
|
{
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"gitdoc.enabled": true,
|
"gitdoc.enabled": true,
|
||||||
"gitdoc.autoPush": "onCommit"
|
"gitdoc.autoPush": "onCommit",
|
||||||
|
"workbench.editorAssociations": {
|
||||||
|
"*.svg": "editor.excalidraw"
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -6,6 +6,9 @@ This repo can be used as a starting point for using foam for note taking with au
|
||||||
|
|
||||||
Fork this repo and open with vscode, install recommended plugins and create your first .md file, save and it should automatically commit and upload to your repo.
|
Fork this repo and open with vscode, install recommended plugins and create your first .md file, save and it should automatically commit and upload to your repo.
|
||||||
|
|
||||||
|
## More features
|
||||||
|
You can use mermaid in your markdown, or create a .svg file and edit it offline with the embedded excalidraw.
|
||||||
|
|
||||||
## Advanced setup
|
## Advanced setup
|
||||||
|
|
||||||
This repo is direnv/flake enabled and allows you to automatically pull in dependencies for your notes. For example you can pull in python and pandas to use with vscode jupyter integration.
|
This repo is direnv/flake enabled and allows you to automatically pull in dependencies for your notes. For example you can pull in python and pandas to use with vscode jupyter integration.
|
Loading…
Reference in a new issue