Files
dotwryn/config/scwrypts/config.zsh

22 lines
479 B
Bash
Raw Normal View History

2022-08-09 22:25:19 -06:00
#
# configuration for scwrypts
#
SCWRYPTS_SHORTCUT='' # CTRL + W
SCWRYPTS_ENV_SHORTCUT='' # CTRL + /
2023-06-24 07:50:14 -06:00
2024-05-18 09:40:45 -06:00
SCWRYPTS_ENVIRONMENT__SHOW_ENV_HELP=false
SCWRYPTS_ENVIRONMENT__PREFERRED_EDIT_MODE=quiet
for SEARCH_DIR in \
2024-08-16 09:41:26 -06:00
"$DOTWRYN/scwrypts" \
"$HOME/Projects/yage/" \
;
do
[ -d "$SEARCH_DIR" ] || continue
for G in "$SEARCH_DIR/"**/*.scwrypts.zsh; do . "$G"; done
done
2023-06-24 07:50:14 -06:00
[ -f "$HOME/.config/scwrypts/config.local.zsh" ] \
&& source "$HOME/.config/scwrypts/config.local.zsh"