install neovim and configure
This commit is contained in:
parent
6191a197ee
commit
46124691f4
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
if command -v apt-get ; then
|
||||
apt-get -y install ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip
|
||||
cd /tmp
|
||||
git clone https://github.com/neovim/neovim
|
||||
cd neovim
|
||||
make CMAKE_BUILD_TYPE=Release
|
||||
mv /tmp/neovim/runtime /usr/local/share/nvim
|
||||
mv /tmp/neovim/build/bin/nvim /usr/local/bin/nvim
|
||||
else
|
||||
echo "Error - no package installer found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p /home/"$_user"/.config
|
||||
cd /home/"$_user"
|
||||
rm -Rf .config/nvim
|
||||
su ray -c 'git clone https://git.rayelliott.dev/dots/nvim.git .config/nvim'
|
||||
|
Reference in New Issue