Jesús Pérez 9cef9b8d57 refactor: consolidate configuration directories
Merge _configs/ into config/ for single configuration directory.
Update all path references.

Changes:
- Move _configs/* to config/
- Update .gitignore for new patterns
- No code references to _configs/ found

Impact: -1 root directory (layout_conventions.md compliance)
2025-12-26 18:36:23 +00:00

10 lines
148 B
Plaintext

#!/usr/bin/env nu
def test_func [path: string, --verbose] {
print $"Path: ($path)"
print $"Verbose: ($verbose)"
[]
}
test_func "test"