LunarVim/utils/bin/install-latest-neovim

10 lines
181 B
Text
Raw Normal View History

2021-03-15 08:29:53 +01:00
!#/bin/bash
cd ~
sudo rm -r neovim
git clone --branch master --depth 1 https://github.com/neovim/neovim
2021-03-15 08:29:53 +01:00
cd neovim
sudo make CMAKE_BUILD_TYPE=Release install
cd ~
sudo rm -r neovim