LunarVim/utils/install_latest_neovim.sh
2021-03-09 23:55:11 -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