feat: create noil

This commit is contained in:
2025-07-25 23:40:09 +02:00
commit 7b7d4f576c
12 changed files with 1934 additions and 0 deletions

14
mise.toml Normal file
View File

@@ -0,0 +1,14 @@
[tasks."run:edit"]
run = """#!/usr/bin/env zsh
set -e
tmp=$(mktemp)
cargo run -- --no-color target/ > "$tmp" || return 1
${EDITOR:-hx} "$tmp"
cargo run -- apply < "$tmp"
rm "$tmp"
"""
[tasks.test]
run = "cargo nextest run"