Usage

Bash

# ~/.bashrc
source <(carapace-spec example/pkill.yaml)

Elvish

# ~/.config/elvish/rc.elv
eval (carapace-spec example/pkill.yaml|slurp)

Fish

# ~/.config/fish/config.fish
carapace-spec example/pkill.yaml | source

Nushell

update config.nu according to Multiple Completer)

#~/.config/nushell/config.nu
carapace-spec example/pkill.yaml

Oil

# ~/.config/oil/oshrc
source <(carapace-spec example/pkill.yaml)

Powershell

# ~/.config/powershell/Microsoft.PowerShell_profile.ps1
carapace-spec example/pkill.yaml | Out-String | Invoke-Expression

Tcsh

## ~/.tcshrc
eval `carapace-spec example/pkill.yaml`

Xonsh

# ~/.config/xonsh/rc.xsh
exec($(carapace-spec example/pkill.yaml))

Zsh

# ~/.zshrc
source <(carapace-spec example/pkill.yaml)