- Enhanced man function opens in new window with bat + Nord theme - Batman alias now uses enhanced man function for muscle memory - Added license scanner utility - Fixed shell loading to use only dotfiles versions - Added dotfiles/bin to PATH for custom scripts - Removed legacy .zsh loading conflicts - Fixed bat path issue for new shell contexts Following prime directive: respecting muscle memory while enhancing capability 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
Custom Scripts
This directory contains custom scripts that will be symlinked to ~/bin.
Setup
- The symlink script will link all scripts from this directory to
~/bin - Make sure
~/binis in your PATH (add to.zshrc):export PATH="$HOME/bin:$PATH"
Adding New Scripts
- Create your script in
~/dotfiles/bin/ - Make it executable:
chmod +x script_name - Run the symlink script to link it to
~/bin
Script Guidelines
- Start with proper shebang:
#!/usr/bin/env bashor#!/usr/bin/env zsh - Add help/usage information
- Use meaningful names
- Document what the script does