Tiny Pistachio Lex

Your premium personal knowledge base & developer code snippet locker. Press ⌘K to search anywhere.

19
Total Snippets
0
Favorites
3
Categories
⌘K

Filter by Category

Adding Snippets

  • Create a new Markdown file inside src/content/snippets/
  • Declare metadata inside the frontmatter block at the top of your markdown file (see format below)
  • Run bun dev to view the hot-reloaded changes locally
---
title: 'Your Snippet Title'
description: 'A brief description of your snippet.'
tags: ["git", "terminal"]
---

### Code Header
```bash
git commit -m "feat: your features"
```