No need to add homeshick to fpath twice

This commit is contained in:
Danielle McLean 2016-10-03 15:45:09 +11:00
parent 75bfbb6e90
commit 54587a49ff
No known key found for this signature in database
GPG key ID: CC91589719027E94

View file

@ -1,5 +1,5 @@
#! zsh
fpath=(~/.zsh/functions ~/.homesick/repos/homeshick/completions $fpath)
fpath=(~/.zsh/functions $fpath)
# filter out duplicates, nonexistent directories, and . (the current directory)
fpath=(${(u)^fpath:#.}(N))