11 lines
221 B
Bash
11 lines
221 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
|
||
|
|
|
||
|
|
|
||
|
|
. "$HOME/.zshrc"
|