mirror of
https://github.com/zplug/zplug
synced 2025-04-05 07:09:12 +02:00
11 lines
295 B
Bash
Executable File
11 lines
295 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
# Description: The environment variables of zplug
|
|
# ^-- This description is used as complete message
|
|
|
|
# This is a sample zplug script
|
|
# For more information, see man page of zplug(1)
|
|
|
|
env \
|
|
| grep -E "^_?ZPLUG_" \
|
|
| perl -pe 's/^(\w+)(=)(.*)$/\033[32m$1\033[m $2 $3/'
|