dotfiles/build_neovim

12 lines
225 B
Plaintext
Raw Normal View History

2024-05-21 18:59:08 +00:00
#!/bin/bash
git clone --recursive --depth=1 --branch tags/v0.9.5 https://github.com/neovim/neovim.git build-neovim
2024-05-21 18:59:08 +00:00
cd build-neovim
rm -rf build
make CMAKE_BUILD_TYPE=Release -j8
sudo make install
cd ..
rm -rf build-neovim