mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-04-18 06:53:35 -04:00
12 lines
368 B
Plaintext
12 lines
368 B
Plaintext
# 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
|