"Restructuring, deprecating, blah blah."

This commit is contained in:
Aaron D. Lee
2025-12-15 21:31:14 -05:00
parent 9d632c16ed
commit 9673a1cb94
13 changed files with 467 additions and 390 deletions

View File

@@ -110,12 +110,14 @@ alias di='docker images'
alias dex='docker exec -it'
# System shortcuts
alias reload='source ~/.zshrc'
alias zshconfig='vim ~/.zshrc'
alias themeconfig='vim ~/.oh-my-zsh/themes/adlee.zsh-theme'
alias h='history'
alias c='clear'
# --- Source Dotfiles Aliases ---
if [[ -f "$HOME/.dotfiles/zsh/aliases.zsh" ]]; then
source "$HOME/.dotfiles/zsh/aliases.zsh"
fi
# Safe operations
alias rm='rm -i'
alias cp='cp -i'
@@ -325,8 +327,8 @@ 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
if command -v dotfiles-vault.sh &>/dev/null && [[ -f "$HOME/.dotfiles/vault/secrets.enc" ]]; then
eval "$(dotfiles-vault.sh shell 2>/dev/null)" || true
fi
# --- Password Manager Integration ---