blob: 17916ceaa71b98f7c602a50d42bd3f50a9debb93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/sh
set -ex
nvimdir="$HOME/scm/pub/neovim-nvim"
sudo apt install -y \
btop \
curl \
dconf-editor \
git \
htop \
lua-nvim \
neofetch \
neovim \
npm \
oathtool \
pavucontrol \
scdaemon \
tmux \
vim \
sudo apt build-dep -y neovim
if ! [ -d "$nvimdir" ] ; then
git clone https://github.com/neovim/neovim "$nvimdir"
fi
cd "$nvimdir"
rm -rf build || echo ""
make CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$HOME/.local" -j"$(nproc)"
make install
cd -
|