funpou 0.1.0

Quick one-line memos with automatic timestamps
# funpou

Quick one-line memos with automatic timestamps.

## Features

- One-command memo capture with auto-timestamp
- Scrollable list view (pipe to `fzf` or `less`)
- JSONL storage for fast read/write
- Optional [Obsidian]https://obsidian.md/ vault integration
- Configurable timestamp format

## Quick Start

```sh
# Save a memo
fnp add fix the login bug

# List all memos
fnp list

# List in oldest-first order
fnp list -r

# Search with fzf
fnp list | fzf

# Show last 10 memos
fnp list -n 10
```

`fnp list` shows newest memos first by default. Use `-r` / `--reverse` for oldest first.

## Installation

```sh
cargo install funpou
```

## Configuration

Config file: `~/.config/funpou/config.toml` (optional — works with zero config)

```toml
timestamp_format = "%Y-%m-%d %H:%M"

[obsidian]
enabled = true
vault_path = "/path/to/vault"
template_path = "daily/{{date:YYYY}}/{{date:YYYY-MM}}.md"
target_heading = "## Memos"
entry_format = "- {{timestamp}}: {{body}}"
```

See [docs/configuration.md](docs/configuration.md) for details.

## Documentation

- [Configuration]docs/configuration.md — All config options and Obsidian setup
- [Usage]docs/usage.md — Commands, flags, and shell integration

## License

MIT