Minimalist vault separate from demo-vault-v2, designed to introduce new users to Laputa's key features: types, relationships, views, wiki-links, and git sync. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1.0 KiB
1.0 KiB
title, type, Status, Belongs to, Related to
| title | type | Status | Belongs to | Related to |
|---|---|---|---|---|
| Task: Create a Custom View | Task | Open | Laputa Onboarding | Laputa Onboarding |
Views are saved filters that show a subset of your notes. This vault includes an example view — "Active Projects" — that shows all projects with status Active.
What to try
- Open the command palette (Cmd+K) and look for a "New View" action, or create a
.ymlfile in theviews/folder - Define filters — for example, show all tasks with status Open
- Set a name, icon, and color for the view
- Save — the view appears in the sidebar under Views
View format
Views are YAML files in views/. Here is an example:
name: Open Tasks
icon: check-square
color: orange
sort: "modified:desc"
filters:
all:
- field: type
op: equals
value: Task
- field: Status
op: equals
value: Open
Tip
Views update automatically as you add or change notes. They are a powerful way to create dashboards for your projects, areas, or any slice of your vault.