bash install.sh
email=...
ssh-keygen -t rsa -b 4096 -C "$email"
Use tpm
to install the plugins by using prefix + I
.
Then, reload the configuration with:
tmux source $HOME/.config/tmux/tmux.conf
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Then, from vim
runs :PlugInstall
git_first_name="..."
git_last_name="..."
git_email="..."
git config --global user.name "$git_first_name $git_last_name"
git config --global user.email "$git_email"
Run the command below and then restart the system.
new_hostname="..."
sudo scutil --set ComputerName "$new_hostname"
sudo scutil --set LocalHostName "$new_hostname"
sudo scutil --set HostName "$new_hostname"