Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pedrotcaraujo/79cefd8744d31ecd0883d5691f86bdfe to your computer and use it in GitHub Desktop.
Save pedrotcaraujo/79cefd8744d31ecd0883d5691f86bdfe to your computer and use it in GitHub Desktop.
ZSH files
.zshenv
[Read every time]
It is always sourced, so it should set environment variables which need to be updated frequently. PATH (or its associated counterpart path) is a good example because you probably don't want to restart your whole session to make it update. By setting it in that file, reopening a terminal emulator will start a new Zsh instance with the PATH value updated.
But be aware that this file is read even when Zsh is launched to run a single command (with the -c option), even by another tool like make. You should be very careful to not modify the default behavior of standard commands as it may break some tools which use them (by setting aliases for example). For sure, it is not forbidden as you know what you are doing.
.zprofile
[Read at login]
I personally treat that file like .zshenv but for commands and variables which should be set once or which don't need to be updated frequently:
environment variables to configure tools (flags for compilation, data folder location, etc.)
configuration which execute commands (like SCONSFLAGS="--jobs=$(( $(nproc) - 1 ))") as it may take some time to execute.
If you modify that file, you can get the configuration updates by replacing the current shell with a new one as login shell:
exec zsh --login
.zshrc
[Read when interactive]
I put here everything needed only for interactive usage:
prompt,
command completion,
command correction,
command suggestion,
command highlighting,
output coloring,
aliases,
key bindings,
commands history management,
other miscellaneous interactive tools (auto_cd, manydots-magic)...
.zlogin
[Read at login]
This file is like .zshprofile, but is read after .zshrc. I consider the shell to be fully set up at this time.
So, I use it to launch external commands which do not modify the shell behaviors (e.g. a login manager).
.zlogout
[Read at logout][Within login shell]
Here, you can clear your terminal or any other resource setup at login.
How I choose where to put a setting
it is needed by a command run non-interactively: .zshenv
it should be updated on new shell: .zshenv
it runs a command which may take some time to complete: .zprofile
it is related to interactive usage: .zshrc
it is a command to be run when the shell is fully setup: .zlogin
it releases a resource acquired at login: .zlogout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment