Zsh Docker Plugin not Working

You might want to try and remove any .zcompdump-(…) files you may have on your user’s home directory – using something like rm ~/.zcompdump* on a terminal, or some file browser – and then reload the .zschrc file with the command source ~/.zshrc or restart the terminal – whichever works best for you. See this … Read more

Git tab completion not working in zsh on mac

TL;DR one-liner echo ‘autoload -Uz compinit && compinit’ >> ~/.zshrc && . ~/.zshrc this will enable completion in .zshrc and apply the setting to your current terminal session. Explanation: Actually, ZSH does know how to do git completion out of the box, but you need to turn on the completion feature itself (which from the … Read more

zsh compinit: insecure directories [closed]

Note: This answer is from 2012. This fixed it for me: $ sudo chmod -R 755 /usr/local/share/zsh/site-functions Credit: a post on zsh mailing list EDIT: As pointed out by @biocyberman in the comments. You may need to update the owner of site-functions as well: $ sudo chown -R root:root /usr/local/share/zsh/site-functions On my machine (OSX 10.9), … Read more