update folderstructure to match xdg-ninja
This commit is contained in:
parent
ec2e91d063
commit
50ecdf4696
1040 changed files with 1898 additions and 2830 deletions
|
@ -0,0 +1,9 @@
|
|||
# Heroku
|
||||
|
||||
This plugin provides completion for the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli).
|
||||
|
||||
To use it add heroku to the plugins array in your zshrc file:
|
||||
|
||||
```bash
|
||||
plugins=(... heroku)
|
||||
```
|
|
@ -0,0 +1,9 @@
|
|||
if [[ "$OSTYPE" = darwin* ]]; then
|
||||
cache_dir="${HOME}/Library/Caches"
|
||||
else
|
||||
cache_dir="${XDG_CACHE_HOME:-"${HOME}/.cache"}"
|
||||
fi
|
||||
|
||||
setup_path="${cache_dir}/heroku/autocomplete/zsh_setup"
|
||||
[[ -f "$setup_path" ]] && source $setup_path
|
||||
unset cache_dir setup_path
|
Loading…
Add table
Add a link
Reference in a new issue