curl -fsSL https://go.pinto.dev/set/env/js | shsudo apt update && sudo apt upgrade -y && sudo apt autoremove --purge -ysudo add-apt-repository ppa:git-core/ppa -y && sudo apt update && sudo apt install git -y# Set User Name and Email
git config --global user.name "Manuel Pinto" \
&& git config --global user.email [email protected]ssh-keygen -t ed25519 -a 100 -C "[email protected]" && cat $HOME/.ssh/id_ed25519.pubgit config --global commit.gpgsign true \
&& git config --global tag.gpgsign true \
&& git config --global gpg.format ssh \
&& git config --global user.signingkey $HOME/.ssh/id_ed25519.pubAdd SSH key to GitHub, GitLab or any other platform
gpg --full-gen-key \
&& gpg --list-secret-keys --keyid-format LONG [email protected] \
&& gpg --armor --export 0123456789 \
&& git config --global user.signingkey 01234567890123456789Add GPG key to GitHub, GitLab or any other platform
curl -fsSL https://go.pinto.dev/get/nvm | bashnvm install --lts --reinstall-packages-from=defaultcurl -fsSL https://go.pinto.dev/get/deno | bashcurl -fsSL https://go.pinto.dev/get/bun | bashsudo apt install zsh -ychsh -s $(which zsh)curl -fsSL https://go.pinto.dev/get/omz | bash"# Auto Suggestions
git clone --depth=1 https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# Syntax Highlighting
git clone --depth=1 https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlightingnano ~/.zshrc# Set Bira theme
ZSH_THEME="bira"# Use plugins
plugins=(zsh-autosuggestions zsh-syntax-highlighting)