summaryrefslogtreecommitdiff
path: root/utils/install_latest_neovim.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/install_latest_neovim.sh')
-rwxr-xr-xutils/install_latest_neovim.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/install_latest_neovim.sh b/utils/install_latest_neovim.sh
new file mode 100755
index 00000000..bdd9441d
--- /dev/null
+++ b/utils/install_latest_neovim.sh
@@ -0,0 +1,9 @@
+#!/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 \ No newline at end of file