| 12345678910111213141516171819202122232425 | #!/bin/bash# install airgo install github.com/air-verse/air@latestinstall zsh-autosuggestionsgit clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestionsif ! grep -q "zsh-autosuggestions" ~/.zshrc; then    # add zsh-autosuggestions to plugins list    sed -i "/^plugins=(/s/)/ zsh-autosuggestions)/" ~/.zshrcfi# init nginx config dir./.devcontainer/init-nginx.sh# install app dependenciesecho "Installing app dependencies"cd app && pnpm install -fcd ..# install docs dependenciesecho "Installing docs dependencies"cd docs && pnpm install -fcd ..
 |