mirror of
https://github.com/zplug/zplug
synced 2025-08-26 07:34:28 +02:00
11 lines
277 B
Bash
Executable File
11 lines
277 B
Bash
Executable File
#!/bin/zsh
|
|
# description: The environment variables of zplug
|
|
# ^-- This description is used as complete message
|
|
|
|
# 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/'
|