Pacstall tried to BUILD neovim from source (downloaded the v0.12.2 tarball and ran the build chain). On a Pi this is 5+ minutes plus fragile — pacstall's connection broke during download. Switch to direct binary tarball install: 1. Pinned to NVIM_TARGET_VERSION='v0.11.4' in two places: - run_once_20-install-user-packages.sh.tmpl (initial install) - dot_local/bin/update-neovim.sh (topgrade-time updates) 2. Both use the same install logic: detect arch via uname -m, download the right tarball (nvim-linux-arm64.tar.gz for aarch64), extract to /opt, symlink /usr/local/bin/nvim. Idempotent — if installed version == target, no-op. 3. Topgrade config has a [commands] entry that runs the update script after system updates. To upgrade neovim across all boxes: edit NVIM_TARGET_VERSION in dot_local/bin/update-neovim.sh, commit, push, run topgrade. 4. Removed run_once_05-install-pacstall.sh.tmpl entirely — pacstall isn't worth the install footprint for one package.
22 lines
No EOL
899 B
TOML
22 lines
No EOL
899 B
TOML
# =============================================================================
|
|
# topgrade.toml — chezmoi-managed
|
|
# Most steps (system, flatpak, snap, cargo, npm, pyenv, rustup, etc.)
|
|
# are auto-detected by topgrade when their binaries are on $PATH. Only set
|
|
# custom config here.
|
|
# =============================================================================
|
|
|
|
[misc]
|
|
# Run `sudo -v` at the start so cached credentials cover the whole run.
|
|
# Without this, topgrade will pause for password mid-run on each sudo invocation.
|
|
pre_sudo = true
|
|
|
|
# Don't fail the whole run if one step fails.
|
|
ignore_failures = ["node"]
|
|
|
|
# Print the time in step titles for verbose output.
|
|
display_time = true
|
|
|
|
[commands]
|
|
# Bump neovim to the version pinned in update-neovim.sh. Idempotent — no-op
|
|
# if already at target. Edit NVIM_TARGET_VERSION in the script to upgrade.
|
|
"~/.local/bin/update-neovim.sh" = "neovim" |