mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-13 21:00:57 +01:00
move plugin into $ZSH/plugins/printc
This commit is contained in:
21
plugins/printc/setup.sh
Executable file
21
plugins/printc/setup.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
ZSHENV_FILE=$HOME/.zshenv
|
||||
|
||||
write_to_zshenv() {
|
||||
{
|
||||
echo
|
||||
echo '# ---Auto generated by printc plugin---'
|
||||
echo 'fpath=($HOME/.oh-my-zsh/plugins/printc $fpath)'
|
||||
echo 'ZSH=$HOME/.oh-my-zsh'
|
||||
echo '# -------------------------------------'
|
||||
echo
|
||||
} >> "$ZSHENV_FILE"
|
||||
}
|
||||
|
||||
if [ -e "$ZSHENV_FILE" ]; then
|
||||
write_to_zshenv
|
||||
else
|
||||
touch "$HOME/.zshenv"
|
||||
write_to_zshenv
|
||||
fi
|
||||
Reference in New Issue
Block a user