Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 699 Bytes

zsh.md

File metadata and controls

32 lines (22 loc) · 699 Bytes
sudo apt install zsh

Font: DroidSansMono Nerd Font

https://www.nerdfonts.com/font-downloads

Install font and select in terminal

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  1. Clone this repository into $ZSH_CUSTOM/plugins (by default ~/.oh-my-zsh/custom/plugins)

    git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  2. Add the plugin to the list of plugins for Oh My Zsh to load (inside ~/.zshrc):

    plugins=( 
        # other plugins...
        zsh-autosuggestions
    )
  3. Theme

jreese