#!/bin/sh set -ex nvimdir="$HOME/scm/pub/neovim-nvim" sudo apt install -y \ scdaemon \ git \ curl \ neofetch \ tmux \ htop \ vim \ neovim \ oathtool \ dconf-editor \ npm \ pavucontrol \ lua-nvim 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 -