enable mermaid and excalidraw

This commit is contained in:
Moritz Bitsch 2024-04-27 07:31:17 +00:00
parent 4ea62dbb7c
commit d2eaae549f
No known key found for this signature in database
3 changed files with 13 additions and 4 deletions

View file

@ -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",
] ]

11
.vscode/settings.json vendored
View file

@ -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"
}
}

View file

@ -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.