diff --git a/.obsidian/app.json b/.obsidian/app.json index d2479d9..96569a5 100644 --- a/.obsidian/app.json +++ b/.obsidian/app.json @@ -20,5 +20,6 @@ "margin": "0", "downscalePercent": 100 }, - "showLineNumber": false + "showLineNumber": false, + "autoConvertHtml": false } \ No newline at end of file diff --git a/.obsidian/daily-notes.json b/.obsidian/daily-notes.json index 38a06ec..b52a9f6 100644 --- a/.obsidian/daily-notes.json +++ b/.obsidian/daily-notes.json @@ -1,6 +1,6 @@ { "folder": "Daily Notes", "template": "_Templates/Daily Note Template", - "autorun": true, + "autorun": false, "format": "" } \ No newline at end of file diff --git a/.obsidian/hotkeys.json b/.obsidian/hotkeys.json index 684fd03..70c6e26 100644 --- a/.obsidian/hotkeys.json +++ b/.obsidian/hotkeys.json @@ -1,28 +1,26 @@ { "obsidian-tasks-plugin:toggle-done": [ { - "modifiers": [ - "Mod", - "Meta", - "Shift" - ], + "modifiers": ["Mod", "Meta", "Shift"], "key": "ArrowRight" } ], "obsidian-tasks-plugin:edit-task": [ { - "modifiers": [ - "Mod" - ], + "modifiers": ["Mod"], "key": "T" } ], "editor:toggle-source": [ { - "modifiers": [ - "Mod" - ], + "modifiers": ["Mod"], "key": "R" } + ], + "editor:insert-wikilink": [ + { + "modifiers": ["Mod"], + "key": "L" + } ] -} \ No newline at end of file +} diff --git a/.obsidian/plugins/obsidian-day-planner/data.json b/.obsidian/plugins/obsidian-day-planner/data.json index a5c59bb..017f2c0 100644 --- a/.obsidian/plugins/obsidian-day-planner/data.json +++ b/.obsidian/plugins/obsidian-day-planner/data.json @@ -6,15 +6,5 @@ "circularProgress": true, "nowAndNextInStatusBar": true, "showTaskNotification": true, - "timelineZoomLevel": 3, - "notesToDates": [ - { - "notePath": "Daily Notes/2022-01-04.md", - "date": "Tue Jan 04 2022" - }, - { - "notePath": "Daily Notes/2022-01-05.md", - "date": "Wed Jan 05 2022" - } - ] + "timelineZoomLevel": 5 } \ No newline at end of file diff --git a/README.md b/README.md index 0f61e81..5efdc68 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,41 @@ A simple starter for [obsidian.md](https://obsidian.md). -## Features - * Daily Notes -* Daily Planner -* Kanban -* Timeline +* Daily Planner with Timeline * Templater (e.g. for _Daily_ notes) +* Kanban support +## Getting started -# Recommendations +Clone repository and copy all contents including potential hidden `.` files +to the vault location you like to use. -Workflow is to create a _Daily Note_ each day. It will use the predefined template automatically. \ No newline at end of file +After you've opened your vault location in Obsidian, make sure to place icons correctly: + +* Turn off safe mode to enable community plugins +* Close any pane which could not be loaded because of first init +* Align panes + * With the command palette `ctrl + p`, _Calendar: Show_ + * With the command palette `ctrl + p`, _Day Planner: Show Timeline_ + * Open `_Dashboard` file and drag the top left icon after the title to the position you like + +The result should look similar to: + +![obsidian_preview](_/../_Attachments/preview.png) + +## Best Practices + +* By default, all files will be opened in `source` mode. Switch to preview mode with `ctrl + e` dynamically, you'll get used to it +* Start your day + * by creating your `Daily Note/` with the icon located left in the sidebar or via action menu `ctrl + p` looking for _Daily Note: Open today's daily note_ + * link this opened file as your _daily_ for the timeline to work with `ctrl + p` looking for _Day Planner: Link ..._ + +## Custom hotkeys + +| Key | Effect | +|:--------------|----------------------------------:| +| ctrl + e | switch source and preview mode | +| ctrl + t | task menu while cursor under text | +| ctrl + l | insert internal link | +| ctrl + r | toggle _live preview_ mode | \ No newline at end of file diff --git a/_Attachments/preview.png b/_Attachments/preview.png new file mode 100644 index 0000000..c3d211c Binary files /dev/null and b/_Attachments/preview.png differ