summaryrefslogtreecommitdiff
path: root/utils/install_latest_neovim.sh
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2021-03-09 23:55:11 -0500
committerGitHub <[email protected]>2021-03-09 23:55:11 -0500
commit474f961b2a31c0fe8281188150c08cc2849bf4df (patch)
tree8a25933cd7a63eddbcab05220d702a6ba7c7f2b6 /utils/install_latest_neovim.sh
parent56f65b12a446fe05483a23585dd4e3104205b062 (diff)
Native LSP, more Lua, less CoC
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