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

Use OMZ completions-dir.txt to improve installation #835

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,9 @@ Add `antigen bundle zsh-users/zsh-completions` to your `~/.zshrc`.

git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions

* Enable it in your `.zshrc` by adding it to your plugin list and reloading the completion:
* Enable it in your `.zshrc` by adding it to your plugin list:

plugins=(… zsh-completions)
autoload -U compinit && compinit

### Manual installation

Expand Down
1 change: 1 addition & 0 deletions completions-dir.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src
2 changes: 1 addition & 1 deletion zsh-completions.plugin.zsh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fpath+="${0:A:h}/src"
export -U FPATH="${0:A:h}/src${FPATH:+:$FPATH}"