Filed Mar 11, 2026
Neon Shells and Quiet Terminals
Scratch notes on terminal rituals, aliases, and the kind of shell setup that stays out of the way.
Neon Shells and Quiet Terminals
Published on: 2026-03-11
Some setups are loud for no reason. I want the terminal to feel like infrastructure: sharp, dimly lit, and always ready to open the next queue.
Current rule
Keep the prompt boring. Put personality into the wallpaper, the keybindings, and the shortcuts that actually save time.
Fast feedback beats a clever prompt every single time.
Useful links
- I still revisit the Astro docs when I want the cleanest route from idea to static page.
- The ripgrep repository remains the easiest answer when search speed matters.
Alias sketch
Inline commands should be short enough to remember and obvious enough to trust.
alias gs='git status --short'
alias notes='pnpm astro dev'
alias findnote='rg -n "TODO|FIXME" src'
Small checklist
- Trim the shell startup file.
- Stop auto-loading tools that only help once a week.
- Treat every alias like public API.