2021-05-04 01:59:31 +00:00
|
|
|
# Configuration Files
|
2012-05-22 16:49:45 +00:00
|
|
|
|
|
|
|
Zsh has several system-wide and user-local configuration files.
|
|
|
|
|
2012-09-03 20:38:18 +00:00
|
|
|
Prezto has one user-local configuration file.
|
|
|
|
|
2012-05-22 16:49:45 +00:00
|
|
|
System-wide configuration files are installation-dependent but are installed
|
2021-05-04 01:59:31 +00:00
|
|
|
in *`/etc`* by default.
|
2012-05-22 16:49:45 +00:00
|
|
|
|
|
|
|
User-local configuration files have the same name as their global counterparts
|
|
|
|
but are prefixed with a dot (hidden). Zsh looks for these files in the path
|
2018-10-12 08:55:55 +00:00
|
|
|
stored in the `$ZDOTDIR` environment variable. However, if said variable is
|
2012-05-22 16:49:45 +00:00
|
|
|
not defined, Zsh will use the user's home directory.
|
|
|
|
|
2021-05-04 01:59:31 +00:00
|
|
|
## File Descriptions
|
2012-05-22 16:49:45 +00:00
|
|
|
|
2021-05-05 17:59:01 +00:00
|
|
|
The [configuration files][1] are read in the following order:
|
|
|
|
|
|
|
|
01. *`/etc/zshenv`*
|
|
|
|
02. *`${ZDOTDIR:-$HOME}/.zshenv`*
|
|
|
|
03. *`/etc/zprofile`*
|
|
|
|
04. *`${ZDOTDIR:-$HOME}/.zprofile`*
|
|
|
|
05. *`/etc/zshrc`*
|
|
|
|
06. *`${ZDOTDIR:-$HOME}/.zshrc`*
|
|
|
|
07. *`${ZDOTDIR:-$HOME}/.zpreztorc`*
|
|
|
|
08. *`/etc/zlogin`*
|
|
|
|
09. *`${ZDOTDIR:-$HOME}/.zlogin`*
|
|
|
|
10. *`${ZDOTDIR:-$HOME}/.zlogout`*
|
|
|
|
11. *`/etc/zlogout`*
|
2012-05-22 16:49:45 +00:00
|
|
|
|
|
|
|
### zshenv
|
|
|
|
|
|
|
|
This file is sourced by all instances of Zsh, and thus, it should be kept as
|
2012-06-12 19:13:21 +00:00
|
|
|
small as possible and should only define environment variables.
|
2012-05-22 16:49:45 +00:00
|
|
|
|
|
|
|
### zprofile
|
|
|
|
|
2021-05-04 01:59:31 +00:00
|
|
|
This file is similar to *zlogin*, but it is sourced before *zshrc*. It was added
|
2021-05-05 17:59:01 +00:00
|
|
|
for [KornShell][2] fans. See the description of *zlogin* below for what it may
|
2012-05-22 16:49:45 +00:00
|
|
|
contain.
|
|
|
|
|
2021-05-04 01:59:31 +00:00
|
|
|
*zprofile* and *zlogin* are not meant to be used together but can be done so.
|
2012-05-22 16:49:45 +00:00
|
|
|
|
|
|
|
### zshrc
|
|
|
|
|
2021-05-04 01:59:31 +00:00
|
|
|
This file is sourced by interactive shells. It should define aliases, functions,
|
|
|
|
shell options, and key bindings.
|
2012-05-22 16:49:45 +00:00
|
|
|
|
2013-11-29 22:34:34 +00:00
|
|
|
### zpreztorc
|
2012-09-03 20:38:18 +00:00
|
|
|
|
|
|
|
This file configures Prezto.
|
2012-05-22 16:49:45 +00:00
|
|
|
|
|
|
|
### zlogin
|
|
|
|
|
2021-05-04 01:59:31 +00:00
|
|
|
This file is sourced by login shells after *zshrc*. Thus, it should contain
|
2012-05-22 16:49:45 +00:00
|
|
|
commands that need to execute at login. It is usually used for messages such as
|
2021-05-05 17:59:01 +00:00
|
|
|
[*fortune*][3], [*msgs*][4], or for the creation of files.
|
2012-05-22 16:49:45 +00:00
|
|
|
|
|
|
|
This is not the file to define aliases, functions, shell options, and key
|
|
|
|
bindings. It should not change the shell environment.
|
|
|
|
|
|
|
|
### zlogout
|
|
|
|
|
|
|
|
This file is sourced by login shells during logout. It should be used for
|
2021-05-04 01:59:31 +00:00
|
|
|
displaying messages and for deletion of files.
|
2012-05-22 16:49:45 +00:00
|
|
|
|
2021-05-04 01:59:31 +00:00
|
|
|
## Authors
|
2012-05-22 16:49:45 +00:00
|
|
|
|
2021-05-05 17:59:01 +00:00
|
|
|
*The authors of these files should be contacted via the [issue tracker][5].*
|
2012-05-22 16:49:45 +00:00
|
|
|
|
2021-05-04 01:59:31 +00:00
|
|
|
- [Sorin Ionescu](https://github.com/sorin-ionescu)
|
2012-05-22 16:49:45 +00:00
|
|
|
|
2021-05-05 17:59:01 +00:00
|
|
|
[1]: http://zsh.sourceforge.net/Intro/intro_3.html#SEC3
|
|
|
|
[2]: https://www.kornshell.com
|
|
|
|
[3]: https://en.wikipedia.org/wiki/Fortune_(Unix)
|
|
|
|
[4]: https://www.manpagez.com/man/1/msgs
|
|
|
|
[5]: https://github.com/sorin-ionescu/prezto/issues
|