bin/setup-hg-evolve

Wed, 25 Sep 2024 15:03:13 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 25 Sep 2024 15:03:13 -0500
changeset 1179
b0a0ba3240b5
parent 985
349ea9f736b9
permissions
-rwxr-xr-x

No LSP autostart when read-only

I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.

#!/bin/bash
set -eu -o pipefail

hg --version >/dev/null

shebang="$(head -n 1 $(which hg) | sed 's/^#!//')"

if ! ($shebang -m pip -V) &>/dev/null; then
  curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py |
    $shebang - --user
fi

$shebang -m pip install --user --upgrade hg-evolve

if ! grep -qsw evolve ~/.hgext/hgrc; then
  printf '[extensions]\nevolve =\n' >> ~/.hgext/hgrc
fi

if ! grep -qsw topic ~/.hgext/hgrc; then
  printf '[extensions]\ntopic =\n' >> ~/.hgext/hgrc
fi

mercurial