10 lines
248 B
Bash
10 lines
248 B
Bash
|
|
#!/bin/zsh
|
||
|
|
|
||
|
|
# Load the real `zsh` config file in ~/
|
||
|
|
#
|
||
|
|
# Recent Debian/Ubuntu versions look for .zshrc
|
||
|
|
# in ~/.config/zsh and no longer in ~/ which
|
||
|
|
# is still the main location in many other distributions
|
||
|
|
|
||
|
|
|
||
|
|
[ -f "$HOME/.zshrc" ] && . "$HOME/.zshrc"
|