LunarVim/utils/install_latest_neovim.sh

9 lines
154 B
Bash
Raw Normal View History

2021-03-10 05:55:11 +01:00
#!/bin/bash
cd ~
sudo rm -r neovim
git clone https://github.com/neovim/neovim
cd neovim
sudo make CMAKE_BUILD_TYPE=Release install
cd ~
sudo rm -r neovim