88 lines
2.6 KiB
JSON
88 lines
2.6 KiB
JSON
{
|
|
// Obsidian MD Configuration
|
|
"obsidian.vaultPath": "/Users/fragginwagon/Developer/MemoryPalace",
|
|
"obsidian.showCommandInContextMenu": true,
|
|
"obsidian.dailyNotePath": "docs/daily",
|
|
"obsidian.dailyNoteFormat": "daily-YYYY-MM-DD",
|
|
"obsidian.newNoteDirectory": "docs",
|
|
"obsidian.attachmentsFolder": "docs/assets",
|
|
"javascript.validate.enable": false,
|
|
"typescript.validate.enable": false, // Optional: also disable validation in .ts files
|
|
// Markdown Configuration
|
|
"markdown.extension.toc.levels": "2..6",
|
|
"markdown.extension.completion.root": "./docs",
|
|
"markdown.extension.preview.autoShowPreviewToSide": true,
|
|
// Markdown Notes Configuration
|
|
"vscodeMarkdownNotes.noteCompletionConvention": "[[wiki-link]]",
|
|
"vscodeMarkdownNotes.slugifyMethod": "github-slug",
|
|
"vscodeMarkdownNotes.workspaceFilenameConvention": "uniqueFilenames",
|
|
// Todo Tree Configuration
|
|
"todo-tree.general.tags": [
|
|
"TODO",
|
|
"FIXME",
|
|
"NOTE",
|
|
"IDEA",
|
|
"HACK",
|
|
"QUESTION"
|
|
],
|
|
"todo-tree.highlights.defaultHighlight": {
|
|
"icon": "check",
|
|
"type": "text",
|
|
"foreground": "white",
|
|
"background": "green",
|
|
"opacity": 50
|
|
},
|
|
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^[ \\t]*(-|\\d+.))\\s*($TAGS)",
|
|
// Code Runner Configuration
|
|
"code-runner.clearPreviousOutput": true,
|
|
"code-runner.showExecutionMessage": true,
|
|
"code-runner.saveFileBeforeRun": true,
|
|
"code-runner.runInTerminal": true,
|
|
"code-runner.executorMap": {
|
|
"javascript": "node",
|
|
"python": "python3",
|
|
"typescript": "ts-node"
|
|
},
|
|
// File Associations
|
|
"files.associations": {
|
|
"*.md": "markdown"
|
|
},
|
|
// Search Configuration
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/*.code-search": true,
|
|
"**/docs/assets/**": true
|
|
},
|
|
// Auto Save
|
|
"files.autoSave": "afterDelay",
|
|
"files.autoSaveDelay": 1000,
|
|
// Editor Configuration for Markdown
|
|
"[markdown]": {
|
|
"editor.wordWrap": "on",
|
|
"editor.quickSuggestions": {
|
|
"comments": "on",
|
|
"strings": "on",
|
|
"other": "on"
|
|
},
|
|
"editor.snippetSuggestions": "top",
|
|
"editor.formatOnSave": true
|
|
},
|
|
// Bookmarks Configuration
|
|
"bookmarks.saveBookmarksInProject": true,
|
|
"bookmarks.navigateThroughAllFiles": true,
|
|
// GitDoc Configuration - Auto-commit on save
|
|
"gitdoc.enabled": true,
|
|
"gitdoc.autoCommitDelay": 1000,
|
|
"gitdoc.commitMessageFormat": "docs: ${message}",
|
|
"gitdoc.commitValidationLevel": "none",
|
|
"gitdoc.autoPush": "afterCommit",
|
|
"gitdoc.pullOnOpen": true,
|
|
// ESLint Configuration
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact"
|
|
]
|
|
} |