kickstart.nvim icon indicating copy to clipboard operation
kickstart.nvim copied to clipboard

Ubuntu installation of neovim

Open uchechimtn opened this issue 7 months ago • 3 comments

In the documentation you have this

sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update
sudo apt install make gcc ripgrep unzip git xclip neovim

but this will install from unstable packages not maintained by neovim,

which can be done with sudo apt install neovim

uchechimtn avatar Jun 01 '25 05:06 uchechimtn

The neovim version included in the stable packages is too old for kickstart, which requires at least 0.10.0 The last three ubuntu releases (24.02, 24.10, 25.04) have all neovim 0.9.5 try running :checkhealth and see if you get any version warnings.

dam9000 avatar Jun 01 '25 08:06 dam9000

Like dam9000 said. Some Linux distros (such as Arch Linux) use a rolling-release model, and packages are updated frequently, but some distros are not. Maintainers have to find a balance between new features and stability. Neovim hasn't reached 1.0 yet, so a lot of things maybe changed. If you're not comfortable with ppa, you can always download the binaries either .tar.gz or .appimage, or you can build neovim from the source.

IronBlood avatar Jun 01 '25 08:06 IronBlood

but this will install from unstable packages not maintained by neovim,

which can be done with sudo apt install neovim

Neovim doesn't maintain that either, see https://github.com/neovim/neovim/issues/22790

brianhuster avatar Jul 05 '25 14:07 brianhuster