blob: bd22e326b4ea392b62882760fbfc03fe926e96cd (
plain)
1
2
3
4
5
6
7
8
9
10
|
# ~/.zshrc
[[ -f ~/.config/zsh/.zshrc ]] && source ~/.config/zsh/.zshrc
# Point all zsh startup files to ~/.config/zsh
export ZDOTDIR="$HOME/.config/zsh"
# If you want, you can still source your real zshenv from there:
if [[ -f "$ZDOTDIR/.zshenv" ]]; then
source "$ZDOTDIR/.zshenv"
fi
|