LunarVim/utils/bin/install-latest-neovim

9 lines
181 B
Text
Executable file

!#/bin/bash
cd ~
sudo rm -r neovim
git clone --branch master --depth 1 https://github.com/neovim/neovim
cd neovim
sudo make CMAKE_BUILD_TYPE=Release install
cd ~
sudo rm -r neovim