Now with more FEATURES (the worth of which who knows, but I like em).

This commit is contained in:
Aaron D. Lee
2025-12-15 16:06:00 -05:00
parent 40d908a7d1
commit 048c9ed8bc
9 changed files with 3177 additions and 0 deletions

View File

@@ -303,6 +303,32 @@ if [[ -f "$HOME/.dotfiles/zsh/functions/snapper.zsh" ]]; then
source "$HOME/.dotfiles/zsh/functions/snapper.zsh"
fi
# --- Smart Command Suggestions ---
if [[ -f "$HOME/.dotfiles/zsh/functions/smart-suggest.zsh" ]]; then
source "$HOME/.dotfiles/zsh/functions/smart-suggest.zsh"
fi
# --- Command Palette (Ctrl+Space or Ctrl+P) ---
if [[ -f "$HOME/.dotfiles/zsh/functions/command-palette.zsh" ]]; then
source "$HOME/.dotfiles/zsh/functions/command-palette.zsh"
fi
# --- Dotfiles Sync Check (on shell start) ---
if [[ "${DOTFILES_AUTO_SYNC_CHECK:-true}" == "true" ]]; then
# Quick async check for dotfiles updates
(dotfiles-sync.sh --auto 2>/dev/null &)
fi
# --- Vault Integration ---
# Source vault secrets into environment (if vault exists and has secrets)
if command -v vault.sh &>/dev/null && [[ -f "$HOME/.dotfiles/vault/secrets.enc" ]]; then
eval "$(vault.sh shell 2>/dev/null)" || true
fi
# --- Local Configuration ---
[ -f ~/.zshrc.local ] && source ~/.zshrc.local