Files
tolaria/getting-started-vault/task-create-a-custom-view.md
Test fe85d1f679 feat: add getting-started-vault with onboarding content
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>
2026-04-04 13:30:22 +02:00

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

  1. Open the command palette (Cmd+K) and look for a "New View" action, or create a .yml file in the views/ folder
  2. Define filters — for example, show all tasks with status Open
  3. Set a name, icon, and color for the view
  4. 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.