1
0
Fork 0

age: add nibble recipient, rekey secrets

This commit is contained in:
Rain 2026-08-26 13:41:16 -04:00
parent 0a1f58dc5d
commit 0bdaefcf97
6 changed files with 39 additions and 79 deletions

View file

@ -4,19 +4,6 @@
# Sync source: https://git.melonbread.xyz/rain/gnu-plus-dotfiles
# =============================================================================
# ---------------------------------------------------------------------------
# PATH (auto-deduplicated)
# ---------------------------------------------------------------------------
typeset -U path
path=(
{{- if not (not (stat "/opt/rocm/bin")) }}
/opt/rocm/bin # ROCm tools first (rocminfo, rocm-smi, amd-smi, hipcc, etc.)
{{- end }}
$HOME/.local/bin
$HOME/.bin
$path
)
# ---------------------------------------------------------------------------
# Oh My Zsh
# ---------------------------------------------------------------------------
@ -38,7 +25,7 @@ plugins=(
fzf-tab # navigable Tab completion menu
zsh-syntax-highlighting # fish-style live colors — MUST be near last
zsh-history-substring-search # fish-style Up/Down history search
deja # predictive ghost completions — MUST be last (replaces zsh-autosuggestions)
zsh-autosuggestions # fish-style ghost completions — MUST be last
)
@ -98,6 +85,18 @@ export TMUX_PLUGIN_MANAGER_PATH=~/.tmux/plugins/tpm
# Debian: ROCm only relevant if you install it. Leave default until needed.
{{ end -}}
# ---------------------------------------------------------------------------
# PATH (auto-deduplicated)
# ---------------------------------------------------------------------------
typeset -U path
path=(
{{- if not (not (stat "/opt/rocm/bin")) }}
/opt/rocm/bin # ROCm tools first (rocminfo, rocm-smi, amd-smi, hipcc, etc.)
{{- end }}
$HOME/.local/bin
$HOME/.bin
$path
)
# ---------------------------------------------------------------------------
# Aliases — common + OS-specific