fix omz being in wrong directory
This commit is contained in:
parent
36265bd61c
commit
87dad1b7e9
1034 changed files with 0 additions and 1232 deletions
9
zsh/.local/share/oh-my-zsh/plugins/heroku/README.md
Normal file
9
zsh/.local/share/oh-my-zsh/plugins/heroku/README.md
Normal file
|
@ -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