From 4e72f7a91e5b97ca3ac980ab4c3074276fc2c1fc Mon Sep 17 00:00:00 2001 From: Sumner Evans Date: Fri, 7 Jul 2017 09:17:46 -0600 Subject: [PATCH] Added installation instructions for AUR, Homebrew --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index ab5c82c..920f456 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,39 @@ It suggests commands as you type, based on command history. 3. Start a new terminal session. +### Arch Linux via the AUR +1. Install the [`zsh-autosuggestions`](https://aur.archlinux.org/packages/zsh-autosuggestions/) or the [`zsh-autosuggestions-git`](https://aur.archlinux.org/packages/zsh-autosuggestions-git/) packages from the [AUR](https://wiki.archlinux.org/index.php/Arch_User_Repository). + + ```sh + pacuar -S zsh-autosuggestions + ``` + or + ``` + pacaur -S zsh-autosuggestions-git + ``` + +2. Add the following to your `.zshrc`: + + ```sh + source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh + ``` + +3. Start a new terminal session. + +### macOS via Homebrew +1. Install the `zsh-autosuggestions` package using [Homebrew](https://brew.sh/). + + ```sh + brew install zsh-autosuggestions + ``` + +2. Add the following to your `.zshrc`: + + ```sh + source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh + ``` + +3. Start a new terminal session. ## Usage