dotfiles-best-practices
Installation
SKILL.md
Dotfiles Best Practices
Reference knowledge for modern dotfiles configuration, organization, and tooling. Serves as the knowledge base for the dotfiles-optimizer orchestrator.
User-Specific Decisions
Theme: Catppuccin Macchiato across all tools (set via $THEME_FLAVOUR=macchiato)
Shell structure: Modular zsh.d/ with numeric prefix load ordering:
zsh/zsh.d/
├── 00-env.zsh # Environment variables, PATH
├── 10-options.zsh # Shell options (setopt)
├── 20-completions.zsh # Completion system
├── 30-plugins.zsh # Plugin loading
├── 40-lazy.zsh # Lazy loading functions
├── 50-keybindings.zsh # Key bindings
├── 60-aliases.zsh # Command aliases
Related skills