VS Code setup
- Settings are listed in settings.json
- Editor Font: Operator Mono
- Terminal Font: SpaceMono NF
| #!/bin/bash | |
| # bash script that can setup environment with common linting and testing tools | |
| yes="${@}" | |
| function yes_or_no { | |
| if [[ $yes == "-y" ]]; then | |
| echo "🛑👍🛑 !!! skipping question !!! 🛑👍🛑" | |
| else |