manemajef286 downloadsA file explorer view with card and list views. Displays folder contents with sorting, pagination, and search.
Explorer is an Obsidian plugin for browsing folder contents directly inside a note. It is built for folder-based vaults where folder notes act as navigation hubs.
Available in the Obsidian community plugin store.

Add an Explorer block to any folder note:
```explorer
```
The block displays files from the note's current folder using your default settings.
You can add a block from the command palette with:
Insert code blockYou can create a new folder with a matching folder note from:
Create folder in current note folderThat command creates Folder/Folder.md, inserts an Explorer block, and opens the new note.




Explorer treats folder notes as navigation pages. A folder note is a Markdown file named after its folder:
Projects/Projects.md
When you open a folder from Explorer, the plugin looks for the matching folder note. If it does not exist, Explorer creates it with a basic Explorer block.
Explorer can also use a root-level homepage when navigating above a root folder note.
By default, homepage navigation is enabled. If the homepage name is left empty, Explorer uses the vault name:
My Vault.md
You can change this in plugin settings:
Use homepageHomepage nameThe homepage must be a root note name, not a nested path. If the configured homepage does not exist, Explorer creates it with:
```explorer
view: "cards"
sortBy: "edited"
depth: 10
pageSize: 21
```
If homepage navigation is disabled, the parent button is hidden when it would navigate above a root folder note.
Explorer registers these command palette commands:
Insert code blockCreate folder in current note folderGo to homepageGo to parent folderGo to homepage opens or creates the configured homepage. Go to parent folder opens the parent folder note, or the homepage when the current note is already in the vault root and homepage navigation is enabled.
Most options are available in the plugin settings UI. You can also override block-specific options inside an Explorer code block:
```explorer
view: "cards"
sortBy: "edited"
depth: 2
pageSize: 21
paginationStyle: "modern"
```
Supported block settings:
| Setting | Values |
|---|---|
view |
cards, list |
sortBy |
newest, oldest, edited, name |
depth |
0-10 |
paginationStyle |
modern, classic, none |
pageSize |
6-100 |
showFolders |
true, false |
showTags |
true, false |
cardExt |
folder, ctime, mtime, desc, none, default |
displayedNotes |
supported, markdown, all, none |
textDirection |
auto, ltr, rtl |
Plugin-only settings include homepage behavior, the parent button, glass controls, card icons, and list bullets.
Use the search icon in the action bar to filter the current Explorer view.
#tag searches frontmatter tags@name searches folder notesExplorer is designed for vaults organized around folders and folder notes. It is not a vault-wide query engine and does not try to replace Dataview, Bases, or tag/database workflows.
Install from Obsidian's community plugin browser, or clone the repository into your vault:
git clone https://github.com/manemajef/obsidian-explorer "/path/to/vault/.obsidian/plugins/obsidian-explorer"
Then enable Explorer from Obsidian's Community plugins settings.
Install dependencies:
npm install
Build:
npm run build
Run development watch mode:
npm run dev
Lint CSS:
npm run lint:css
Issues and pull requests are welcome. For larger changes, open an issue first so the behavior and scope can be discussed before implementation.
When contributing:
src/vault/actions.tsnpm run build before submitting changesMIT