Sync your Flomo memos to Obsidian. Auto-login, tag-based folders, incremental updates.
- One-click login: Log in to Flomo directly from Obsidian — no manual token copying
- Full sync: Fetches all your Flomo memos and converts them to Markdown
- Tag-based folders: Memos are organized into folders matching your Flomo tag hierarchy
- Incremental updates: Detects new, updated, and deleted memos
- Auto sync: Optional sync on startup + configurable interval
- HTML → Markdown: Converts rich text (bold, italic, highlights, blockquotes, lists, images) to clean Markdown
- Frontmatter: Each memo includes YAML frontmatter with date, slug, source, and tags
Flomo → Login → Fetch all memos → Convert HTML to Markdown → Write to vault
↓
flomo/
├── project/content/
│ └── 2026-05-01_07-59-23.md
├── story/dairy/
│ └── 2026-04-30_23-15-52.md
└── _untagged/
└── ...
Each memo becomes a Markdown file named by its creation timestamp. Files are organized into folders based on your Flomo tags. A memo with multiple tags is copied to all matching folders.
- Open Settings → Community Plugins → Browse
- Search for "Flomo Sync"
- Install and enable
- Download
main.js,manifest.json, andstyles.cssfrom the latest release - Create a folder
flomo-syncinside your vault's.obsidian/plugins/directory - Copy the three files into that folder
- Restart Obsidian and enable the plugin in Settings → Community Plugins
git clone https://github.com/Watermelon4000/flomo-obsidian-sync.git
cd flomo-obsidian-sync
npm install
npm run buildThen copy main.js, manifest.json, and styles.css to your vault's .obsidian/plugins/flomo-sync/ directory.
- Open plugin settings
- Click 🔑 Login with Flomo
- Log in to your Flomo account in the popup window
- Token is captured automatically — done!
Note: The token may expire periodically. If sync stops working, click Login again.
| Setting | Default | Description |
|---|---|---|
| Flomo Folder | flomo |
Root folder in your vault for synced memos |
| Sync on Startup | Off | Auto-sync when Obsidian opens |
| Sync Interval | 60 min | How often to auto-sync (0 = disabled) |
- Sync Flomo Now — Trigger a manual sync
- Reset Flomo Sync History & Re-sync All — Clear sync records and do a fresh full import
You can also click the 🔄 ribbon icon to sync.
Each memo is saved as a Markdown file with frontmatter:
---
date: 2026-05-01 07:59:23
slug: MjM0NDE0NzA4
source: flomo
tags:
- "project/content"
---
Your memo content here, converted from HTML to Markdown.
#project/contentNetwork access: This plugin connects to
flomoapp.comto fetch your memos. All data is stored locally in your Obsidian vault.Unofficial API: This plugin uses Flomo's internal web API (the same endpoints used by the Flomo web app). It is not an official Flomo integration and may break if Flomo changes their API. Use at your own discretion.
Desktop only: The auto-login feature requires Electron (Obsidian desktop). This plugin does not work on mobile.
No tracking: This plugin does not collect any analytics, telemetry, or personal data.
Questions, bugs, or feature requests? Reach out at hello@delicatewatermelon.com
MIT © Zihong Chen