blob: 8d1d95fd6d2449848b062cdde876777359c5f118 (
plain)
1
2
3
4
5
6
7
8
9
|
!#/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
|