Dotfiles and a clean terminal
1 minute read •
Current terminal setup:
- Shell: bash/zsh (depending on the box)
- Prompt: simple, fast, minimal
- Editor:
vim
for quick edits, VS Code for longer sessions
Small dotfile tips:
- Keep OS-specific bits in separate files and source them conditionally
- Prefer clear names over cleverness; future-you will thank you
- Version your dotfiles but avoid secrets in the repo
I’ll publish more concrete snippets as I go.
# list hidden files and colors
# quick prompt example
PS1='[\u@\h \W]$ '
// basic rust demo