Add zsh/oh my zsh/w10k
This commit is contained in:
8
zsh/.oh-my-zsh/plugins/compleat/README.md
Normal file
8
zsh/.oh-my-zsh/plugins/compleat/README.md
Normal file
@ -0,0 +1,8 @@
|
||||
# compleat plugin
|
||||
|
||||
This plugin looks for [compleat](https://github.com/mbrubeck/compleat) and loads its completion.
|
||||
|
||||
To use it, add compleat to the plugins array in your zshrc file:
|
||||
```
|
||||
plugins=(... compleat)
|
||||
```
|
20
zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh
Normal file
20
zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh
Normal file
@ -0,0 +1,20 @@
|
||||
# ------------------------------------------------------------------------------
|
||||
# FILE: compleat.plugin.zsh
|
||||
# DESCRIPTION: oh-my-zsh plugin file.
|
||||
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
|
||||
# VERSION: 1.0.0
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
if (( ${+commands[compleat]} )); then
|
||||
local prefix="${commands[compleat]:h:h}"
|
||||
local setup="${prefix}/share/compleat-1.0/compleat_setup"
|
||||
|
||||
if [[ -f "$setup" ]]; then
|
||||
if ! bashcompinit >/dev/null 2>&1; then
|
||||
autoload -U bashcompinit
|
||||
bashcompinit -i
|
||||
fi
|
||||
|
||||
source "$setup"
|
||||
fi
|
||||
fi
|
Reference in New Issue
Block a user