curl -fsSL https://go.pinto.dev/set/env/js | sh
sudo apt update && sudo apt upgrade -y && sudo apt autoremove --purge -y
sudo 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 rsa -f "$HOME/.ssh/id_rsa" -P "" && cat $HOME/.ssh/id_rsa.pub
Add 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 01234567890123456789
Add GPG key to GitHub, GitLab or any other platform
curl -fsSL https://go.pinto.dev/get/nvm | bash
nvm install --lts --reinstall-packages-from=default
curl -fsSL https://go.pinto.dev/get/deno | bash
curl -fsSL https://go.pinto.dev/get/bun | bash
sudo apt install zsh -y
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-highlighting
nano ~/.zshrc
# Set Bira theme
ZSH_THEME="bira"
# Use plugins
plugins=(zsh-autosuggestions zsh-syntax-highlighting)