$ ./setup.sh
#parameters --hard: Remove all folders and clone again
Navigate to configs
folder
#Oh My Zsh
#Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
#Overwrite zshrc
rm ~/.zshrc & cp zsh/.zshrc ~/.zshrc
#Install zsh plugins
# Install zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# Install zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
#Install cdimascio-lambda.zsh-theme #Clone/Download theme: https://github.com/cdimascio/lambda-zsh-theme #Navigate to downloaded folder and run the following command:
cp cdimascio-lambda.zsh-theme ~/.oh-my-zsh/themes
#Update zshrc
. ~/.zshrc
rm ~/Library/Preferences/com.amethyst.Amethyst.plist & cp amethyst/com.amethyst.Amethyst.plist ~/Library/Preferences
rm -rf ~/.config/karabiner & cp -R karabiner ~/.config
$ brew install neovim
#Copy the init file
mkdir -p ~/.config/nvim && cp nvim/init.vim ~/.config/nvim
#Make Neovim the default editor
export EDITOR="nvim"
#Install vim-plug for neovim
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
open nvim and run :PlugInstall in neovim
rm ~/Library/Preferences/com.googlecode.iterm2.plist & cp iterm2/com.googlecode.iterm2.plist ~/Library/Preferences