Bookmarks

Bookmarks let you pin directories for quick navigation. Jump to any bookmarked path with a single keystroke instead of traversing the file tree.

Overview

The bookmark manager stores a list of directory paths that you access frequently. Bookmarks are persisted to a TOML file alongside your configuration, so they survive restarts. You can seed initial bookmarks in your config file and add or remove them interactively at any time.

Adding & Removing Bookmarks

Navigate to any directory in the file tree and press the bookmark key to add it. Open the bookmark overlay to see all saved bookmarks, select one to jump to it, or delete bookmarks you no longer need.

KeyAction
BOpen bookmarks overlay
EnterJump to selected bookmark
dDelete selected bookmark
rRename selected bookmark
EscClose bookmarks overlay

Persistence

Bookmarks are stored in a separate TOML file in your grüt config directory. The bookmark manager loads saved bookmarks on startup and merges them with any paths defined in your configuration. Changes are written to disk immediately.

Configuration Reference

[bookmarks]
paths = [             # Seed bookmarks from config
  "~/projects",
  "~/dotfiles",
]
show_in_sidebar = true # Show bookmarks section in sidebar

Related