Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add zsh-autocomplete plugin installation steps #376

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions iTerm/zsh.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@ Clone the zsh-autosuggestions plugin’s repo and copy it to the “Oh My ZSH”
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
```

##### zsh-autocomplete

This plugin adds real-time type-ahead autocompletion to your command line. The available completions are listed automatically and press Tab to insert the top completion or ↓ to select a different one.

Clone the zsh-autocomplete plugin’s repo and copy it to the “Oh My ZSH” plugins directory.

```sh
git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete
```

##### Enforce Changes

To apply the changes you make you need to either **start new shell instance**
Expand Down