Update zsh common config files

This commit is contained in:
Eric Torres 2022-12-07 16:50:09 -08:00
parent ef40797415
commit dec685d9b3
2 changed files with 3 additions and 4 deletions

View File

@ -62,11 +62,10 @@ mkcd() {
autoload -Uz mkcd
# Detect OS to autoload uncommon config files
if [[ "$(uname -a)" == "Darwin" ]]; then
for dotfile in "${XDG_CONFIG_HOME}"/zsh-macos/**/*; do
if [[ "$(uname)" == "Darwin" ]]; then
for dotfile in "${XDG_CONFIG_HOME}"/zsh-macos/**/*(.); do
source $dotfile
done
[ -f "${ZDOTDIR}/conf.d/fzf.zsh" ] && source "${ZDOTDIR}/conf.d/fzf.zsh"
test -e /Users/etorres/.config/zsh/.iterm2_shell_integration.zsh && source /Users/etorres/.config/zsh/.iterm2_shell_integration.zsh || true
else
for dotfile in "${XDG_CONFIG_HOME}"/zsh-linux/**/*; do

View File

@ -1 +1 @@
This directory (zsh) contains files that are common between all OS installations
# This directory (zsh) contains files that are common between all OS installations