-
Notifications
You must be signed in to change notification settings - Fork 0
Switch Neovim PPA from stable to unstable #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -393,14 +393,14 @@ function stepInstallNeoVim() { | |
| if ! [ -e "$(command -v nvim)" ]; then | ||
| logStep "Installing NeoVim..." | ||
| # Adds repo for latest neovim version | ||
| runCmdAndLog add-apt-repository -y ppa:neovim-ppa/stable | ||
| runCmdAndLog add-apt-repository -y ppa:neovim-ppa/unstable | ||
|
||
| runCmdAndLog ${APT_CMD} update | ||
| runCmdAndLog ${APT_INSTALL} neovim | ||
| # Set neovim as default vim | ||
| local NVIM_BIN | ||
| NVIM_BIN="$(command -v nvim)" | ||
| runCmdAndLog update-alternatives --set vi "${NVIM_BIN}" | ||
| runCmdAndLog update-alternatives --set vim "${NVIM_BIN}" | ||
| runCmdAndLog update-alternatives --install /usr/bin/vi vi "${NVIM_BIN}" 110 | ||
| runCmdAndLog update-alternatives --install /usr/bin/vim vim "${NVIM_BIN}" 110 | ||
| log "NeoVim installed." | ||
| else | ||
| logStep "NeoVim already installed." | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
neovim-ppa/unstable PPA Ubuntu 20.04 focal support💡 Result:
As of February 2, 2026, the
ppa:neovim-ppa/unstablePPA does not publish packages for Ubuntu 20.04 (focal). On the PPA page, the selectable / published series are Jammy (22.04) and newer (Noble 24.04, Plucky 25.04, Questing 25.10, Resolute 26.04), with no Focal entry. [1]Historically, there were focal builds in this PPA (e.g., recipe builds targeting the Focal series), but focal is not currently supported/published. [2]
Sources: [1] [2]
🏁 Script executed:
Repository: yorch/ubuntu-server-bootstrap
Length of output: 87
🏁 Script executed:
Repository: yorch/ubuntu-server-bootstrap
Length of output: 651
NeoVim unstable PPA is incompatible with Ubuntu 20.04, a required supported version.
The
ppa:neovim-ppa/unstabledoes not publish packages for Ubuntu 20.04 (focal). Switching from the stable PPA breaks the bootstrap script on Ubuntu 20.04, which is listed as a supported LTS version. Either:ppa:neovim-ppa/stablefor cross-version compatibility🤖 Prompt for AI Agents