Plugin Recommendations?

What I’m trying to do

hey there, started using obsidian about a month ago and have been using it for university/reading notes. i want to start utilizing it more for the daily reminders, daily notes, and other things that can help with university or just training good thinking/writing/ learning habits in general. i like my notes with a brown minimal aesthetic so will take any recs on that too. thanks!

Things I have tried

I been too scared to mess with community plugins because I don’t want to overly convolute my layout but i have started seeing really aesthetic layouts online!

See my short introduction to Obsidian that I post to new users.


Sync

  • if you have iPhone you can use iCloud to have mobile sync
  • if you have Android‑phone then you can use FolderSync which has a free plan supported by ads—note that in general you don’t know how exactly apps track and use the information collected so Obsidian Sync will be always best privacy‑friendly choice for Android‑users

Calendar-plugin

Easily navigate between your daily notes. You may also consider using Templater to add yesterday and tomorrow note links to your daily note (this is helpful on mobile).

Tasks-plugin

Set Cmd + T to edit/add tasks. Set priorities to your tasks. Include # Things I want to do later‑section in your template where you put your tasks. Using Tasks plugin you can then include this inline code block to any note to dynamically query every task in your vault under closest heading # Things I want to do later:

```tasks
not done
heading includes things I want to do later
```

That tasks‑query can also target specific projects if you use similar daily‑note‑like templates for different projects:

```tasks
not done
heading includes things I want to do later
folder includes my project
```

You can also target tasks with spefic tag (tags contained in tasks):

```tasks
not done
heading includes things I want to do later
folder includes my project
tags include #mytag1
tags include #mytag2
```

Note that targeting multiple tags is done in separate lines and tasks need to include both #mytag1 and #mytag2. You can expand query results using this OR syntax:

```tasks
not done
heading includes things I want to do later
folder includes my project
(tags include #mytag1) OR (tags include #mytag2)
```

You can sort by task priority which is set using Tasks: Create or edit task command (you can set Cmd+T for it):

```tasks
not done
heading includes things I want to do later
folder includes my project
tags include #mytag1
tags include #mytag2
sort by priority
```

Normally you use Cmd + L to input tasks and optionally Cmd + T for adding additional task metadata like priority or due date.

On Windows you can replace Cmd by LeftAlt or Control.

QuickAdd-plugin

Create notes from templates using a pop up menu QuickAdd: run QuickAdd. I use Cmd + D for this. You can create session based notes for your hobby/work/studying for example. In there you can have “Things I want to do later” section as I mentioned earlier.

Omnivore-plugin

Omnivore is a free‑to‑use read‑it‑later platform that works in web browser but it offers plugin for Obsidian to transfer your content. You don’t usually want to transfer everything automatically.

Other

Finally there is Tiago Forte’s book Building a Second Brain. I don’t recommend spending money on this but you could buy it with a friend etc. There might be other similar books worth of buying.

Some small quality of life plugins I love:
Auto Link Title no fuss whatsoever inserting external links with this. It enables you to paste the link into highlighted text and it will format the link properly automatically, or fetch the title from the page and format the link with that title.
Text Format all sorts of text formatting with hotkeys: change to title case, lower case, etc, remove redundant spaces in selection, format bullet lists in various ways and such.
Link with alias if you often create links to new notes when writing, easily ensure the display text will remain the same even if you change the note title later. Conversely, if there is a note already, you can easily create an alias without leaving your current note.

If using callouts a lot, Callout Manager to adjust the look of default ones or create custom ones without having to write CSS snippets.

Tag Wrangler should really be in core Obsidian.

If looking for themes for aesthetics, I use and love Minimal, but none of the dark presets are really brown, but you can make your own color scheme in Style Settings. A brown one that comes to mind is Primary

I use the Style Settings plugin to edit themes just to my liking. Lots of options with none to minimal coding skills needed.

I have folders within folders and such so the https://github.com/IdreesInc/Waypoint plugin makes life a lot easier to get a sense of how deep the rabbithole goes.

I also use the core plugin (Outline) in my right-hand sidebar when reading very long notes with multiple chapters/headings.

I read a lot of books on Kindle so the Kindle Highlights plugin is highly useful to sync all of my highlights for when I need to reference things within my nots.

If you write fleeting thoughts or snippets on your phone often then I hghly recommend signing up for the Obsidian Sync feature. It’s made it much easier to take quick notes when out and about, come back to my computer and expanding and/or finishing that thought.

Edit: typos

GitHub - reorx/obsidian-paste-image-rename: Renames pasted images and all the other attachments added to the vault - When you drag images into notes, this plugin will improve the workflow for renaming it to something useful.

GitHub - st3v3nmw/obsidian-spaced-repetition: Fight the forgetting curve by reviewing flashcards & entire notes on Obsidian.md - This plugin may be useful to you to prepare for tests by presenting your with flash cards. You have to create the flash cards using specific formatting.

GitHub - tgrosinger/recent-files-obsidian: Display a list of most recently opened files - This plugin keeps track of a list of recently opened notes. As your vault grows, this may help you get back to a note you looked at recently.

Currently (using ver. 1.6.7), I couldn’t really make use of Obsidian as much as I do daily without:

  • Templater to automate note creation and to use it for Javascript snippets to make changes in the workspace
  • Dataview to query the whole vault or a folder based on YAML frontmatter values (properties)

Other useful stuff:

  • Zotero Integration
  • Linter
  • Hover Editor
  • PlantUML and/or Mermaid (Editors)
  • QuickSwitcher upgrades such as Another Quick Switcher (using it mainly for ripgrep searches), Darlal’s Quick Switcher Plus and Quick Explorer
  • DBFolder and/or Projects
  • Editing Toolbar

I’d recommend to download one (or even more than one) demo vaults where people figured out how to structure their vaults and how to query them.

One I have in mind is SoRobby’s Starter Vault I mentioned in this thread just now.