Skip to content

Latest commit

 

History

History
36 lines (35 loc) · 1.15 KB

README.md

File metadata and controls

36 lines (35 loc) · 1.15 KB

Terminal

Usage

  1. Install git
sudo apt-get install git -y
  1. Create and add a new SSH key to your GitHub account
ssh-keygen -t ed25519 -C "[email protected]"
cat ~/.ssh/id_ed25519.pub
# Copy the key to your clipboard and add it to your GitHub account
  1. Clone the repository
git clone [email protected]:stijntratsaertit/terminal.git && cd terminal
  1. Run the installation script
./install_zsh.sh
  1. Upon completion, install the Spaceship theme
git clone https://github.com/spaceship-prompt/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1
ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
  1. Install the zsh plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
  1. Finalize the installation
source ~/.zshrc
cd ~