summaryrefslogtreecommitdiff
path: root/runs/neovim
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-12-05 13:49:22 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-12-05 13:49:22 -0500
commitf8d09c5cfd6d1d9595b64547dc9d29c63e40c5f2 (patch)
tree0dd9cfa47cfa0bd4d57d7789439cc86afbbdfa85 /runs/neovim
parent29b1c791f6e319cdab828cee5f491ca1c38e41d1 (diff)
Moved .local/bin to scripts
Diffstat (limited to 'runs/neovim')
-rwxr-xr-xruns/neovim12
1 files changed, 12 insertions, 0 deletions
diff --git a/runs/neovim b/runs/neovim
new file mode 100755
index 0000000..5eab896
--- /dev/null
+++ b/runs/neovim
@@ -0,0 +1,12 @@
+#!/bin/zsh
+
+source ../util
+
+version="v0.10.2"
+
+git clone -b $version https://github.com/neovim/neovim.git $target/neovim
+sudo dnf install -y cmake gettext lua lua-libs
+cd $HOME/neovim
+make CMAKE_BUILD_TYPE=RelWithDebInfo
+make CMAKE_INSTALL_PREFIX=$target/bin install
+