9 lines
165 B
Bash
9 lines
165 B
Bash
|
# .zshrc
|
||
|
|
||
|
# # # old settings go here # # #
|
||
|
|
||
|
# # # load Zim # # #
|
||
|
if [[ -s ${ZDOTDIR:-${HOME}}/.zim/init.zsh ]]; then
|
||
|
source ${ZDOTDIR:-${HOME}}/.zim/init.zsh;
|
||
|
fi;
|