LunarVim.LunarVim/utils/bin/install-latest-neovim
2021-03-13 01:40:17 -05:00

9 lines
No EOL
154 B
Bash
Executable file

#!/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