mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
11 lines
368 B
Text
11 lines
368 B
Text
# Function to install startup files for a new user.
|
|
# This dummy version simply creates a new .zshrc with a comment.
|
|
# FIXME: we don't want to distribute a file that does that, it
|
|
# would be preferable to do nothing at all.
|
|
|
|
# Sanitize environment.
|
|
emulate -L zsh
|
|
|
|
echo "# Created by newuser for $ZSH_VERSION" >${ZDOTDIR:-$HOME}/.zshrc
|
|
|
|
unfunction zsh-install-newuser
|