#!/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 -