ZSH
Shell setup for Unix-based workstations.
Workflow: Install Oh My Zsh with autosuggestions
Install ZSH if not already present:
apt install zsh
Install Oh My Zsh:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Install the autosuggestions plugin:
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestionsEnable the plugin by editing
~/.zshrc— addzsh-autosuggestionsto thepluginslist:plugins=(git zsh-autosuggestions)
See shell_setup/.zshrc in the generated project for the recommended Dpgstack ZSH configuration.