PortValhalla/scripts/Common/Config/aliae/aliae.yml

26 lines
655 B
YAML

alias: []
env: []
path: []
script:
- value: |
[ -f /bash/conf.d/* ] && . /bash/conf.d/* || true
if: match .Shell "bash"
- value: |
# Profile Files
$profileRoot = Split-Path -Parent $PROFILE;
$profilePath = "$profileRoot/profile.d/*.ps1";
if (Test-Path $profilePath) {
Get-Item $profilePath | ForEach-Object { . $_; };
}
if: match .Shell "pwsh"
- value: |
eval "$(aliae completion bash)"
if: match .Shell "bash"
- value: |
aliae completion fish | source
if: match .Shell "fish"
- value: |
aliae completion powershell | Invoke-Expression
if: match .Shell "pwsh"