Guest User

Untitled

a guest
Jun 11th, 2022
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. {
  2. "folders": [
  3. {
  4. "path": "notes",
  5. "name": "Zettelkasten-Medical-Notes"
  6. }
  7. ],
  8. // The following settings will only apply to Markdown files:
  9.  
  10. "settings": {
  11. "dendron.rootDir": ".",
  12. "files.autoSave": "onFocusChange",
  13. "pasteImage.path": "${currentFileDir}/assets/images",
  14. "pasteImage.prefix": "/",
  15. "markdown-preview-enhanced.enableWikiLinkSyntax": true,
  16. "markdown-preview-enhanced.wikiLinkFileExtension": ".md",
  17. "editor.snippetSuggestions": "inline",
  18. "editor.suggest.snippetsPreventQuickSuggestions": false,
  19. "editor.suggest.showSnippets": true,
  20. "editor.tabCompletion": "on",
  21. "dendron.enableSelfContainedVaultWorkspace": true,
  22.  
  23. // quickSuggestions true will provide suggestions as you type.
  24. // If you turn this on and DO NOT want suggestions
  25. // for non-wiki-link, non-tag words,
  26. "editor.quickSuggestions": true,
  27. // This is poorly documented, but seems to offer suggestions
  28. // from any word in open document when turned on, which
  29. // can be a little distracting in Markdown docs:
  30. "editor.wordBasedSuggestions": false,
  31. "editor.tabSize": 2,
  32. // Set this to false if you turn on quickSuggestions
  33. // but don't want suggestions for Markdown related snippets
  34. // as you type:
  35. "editor.suggest.showSnippets": false,
  36. },
  37. "extensions": {
  38. "recommendations": [
  39. "dendron.dendron",
  40. "dendron.dendron-paste-image",
  41. "dendron.dendron-markdown-shortcuts",
  42. "redhat.vscode-yaml"
  43. ],
  44. "unwantedRecommendations": [
  45. "dendron.dendron-markdown-links",
  46. "dendron.dendron-markdown-notes",
  47. "shd101wyy.markdown-preview-enhanced",
  48. "kortina.vscode-markdown-notes",
  49. "mushan.vscode-paste-image"
  50. ]
  51. }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment