May 30, 2024

Install latest neovim in linux machine in 3 simple steps

Built Neovim from source. Here’s the step-by-step process:

  1. Install Dependencies:

    sudo apt-get install ninja-build gettext cmake unzip curl
  2. Clone the Neovim Repository:

    git clone https://github.com/neovim/neovim.git
    cd neovim
  3. Build and Install Neovim:

    make CMAKE_BUILD_TYPE=Release
    sudo make install

By following these steps, you should be able to build and install Neovim successfully from source.