https://gist.github.com/kuangyujing/117a84d60d1b70acc15bc0eaccb507d0
https://gist.github.com/kuangyujing/5b0e16fb341ab4aaef2c4afeb287bf29
https://gist.github.com/kuangyujing/e63b18370a27bfad072e69244753f4f2
Dark theme for xfce4-terminal
Vim plugin for modern HTML5 syntax hightlight and indentation
Blazing fast minimap / scrollbar for vim, powered by code-minimap written in Rust.
Spec-driven Development Kit for Power Platform
Suppress emoji and ambiguous-width symbols
## Terminal Output Rules
- Do not use emoji (such as ✅ ❌ 🚀 🎉) in any output, including response text, file contents, and commit titles. For status indicators, use ASCII markers such as [x], [ ], OK, NG, or DONE instead.
- Do not use circled numbers, geometric symbols, or arrow symbols. Use ASCII equivalents: (1) (2) (3) or 1. 2. 3. for ① ② ③; *, -, + for ★ ☆ ● ○ ◆ ■ ▲; ->, <-, ^, v for → ← ↑ ↓.
- Box Drawing characters (─ │ ┌ ┐ ┘ └, etc.) may be used as-is.
Delete all containers including its volumes and images
docker rm -vf $(docker ps -aq)
docker rmi -f $(docker images -aq)Remove Claude Code Symbols that cause Tofu on macOS
sudo sed -i '' -e $'s/\u23F8//g' -e $'s/\u23F5\u23F5//g' -e $'s/\u21E2//g' /path/to/lib/node_modules/@anthropic-ai/claude-code/cli.jsRemove all UI indicators in Claude Code
# Replace /path/to/lib/node_modules with the actual path to your global node_modules directory
sudo sed -i '' -e $'s/\u23FA//g' -e $'s/\u23F8//g' -e $'s/\u23F5//g' -e $'s/\u21E2//g' -e $'s/\u2705//g' -e $'s/\u274C//g' -e $'s/\u26A0//g' /path/to/lib/node_modules/@anthropic-ai/claude-code/cli.js