1
0
Fork 0
mirror of synced 2024-09-19 12:02:53 -04:00
zimfw/templates/zshrc

15 lines
275 B
Bash
Raw Normal View History

2015-12-15 00:12:17 -05:00
#
2015-12-31 11:17:51 -05:00
# User configuration sourced by interactive shells
2015-12-15 00:12:17 -05:00
#
# Define zim location
(( ! ${+ZIM_DATA_DIR} )) && export ZIM_DATA_DIR="${XDG_DATA_HOME:-"${HOME}/.local/share"}/zim"
2015-12-15 00:12:17 -05:00
# Source zim
if [[ -s "${ZIM_DATA_DIR}/init.zsh" ]]; then
source "${ZIM_DATA_DIR}/init.zsh"
2015-12-15 00:12:17 -05:00
fi