- Open .zshrc
nano ~/.zshrc - Paste function.sh at the end of file and save it
- Reload shell configuration
source ~/.zshrc
asdf_latest_local bun
| const fs = require("fs"); | |
| const path = require("path"); | |
| const crypto = require("crypto"); | |
| const { execSync } = require("child_process"); | |
| const repoRoot = process.cwd(); | |
| const todoFilePath = path.join(repoRoot, "TODO.md"); | |
| const ignoredDirs = ["node_modules", ".git", "dist", "build", ".next", "out"]; | |
| const allowedExtensions = [".js", ".ts", ".tsx", ".jsx", ".mjs", ".cjs"]; |
| # syntax=docker/dockerfile:1 | |
| FROM ubuntu:latest | |
| LABEL maintainer='Marek Pankowski <mkpanq.com>' | |
| LABEL last-update='2025-08-03' | |
| SHELL ["/bin/bash", "-l", "-c"] | |
| # Be sure to install the proper version of asdf | |
| # Available version type for each tag: |
| { | |
| "auto_update": true, | |
| "theme": { | |
| "mode": "system", | |
| "dark": "Ayu Mirage", | |
| "light": "Ayu Light" | |
| }, | |
| "base_keymap": "JetBrains", | |
| "buffer_font_family": "Fira Code", | |
| "buffer_font_size": 15, |