Wed, 25 Sep 2024 15:03:13 -0500
No LSP autostart when read-only
I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.
839
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
1 | #!/bin/bash |
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
2 | set -eu -o pipefail |
356 | 3 | |
985
349ea9f736b9
try to use the same python as hg automatically
Meredith Howard <mhoward@roomag.org>
parents:
892
diff
changeset
|
4 | hg --version >/dev/null |
349ea9f736b9
try to use the same python as hg automatically
Meredith Howard <mhoward@roomag.org>
parents:
892
diff
changeset
|
5 | |
349ea9f736b9
try to use the same python as hg automatically
Meredith Howard <mhoward@roomag.org>
parents:
892
diff
changeset
|
6 | shebang="$(head -n 1 $(which hg) | sed 's/^#!//')" |
349ea9f736b9
try to use the same python as hg automatically
Meredith Howard <mhoward@roomag.org>
parents:
892
diff
changeset
|
7 | |
349ea9f736b9
try to use the same python as hg automatically
Meredith Howard <mhoward@roomag.org>
parents:
892
diff
changeset
|
8 | if ! ($shebang -m pip -V) &>/dev/null; then |
839
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
9 | curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py | |
985
349ea9f736b9
try to use the same python as hg automatically
Meredith Howard <mhoward@roomag.org>
parents:
892
diff
changeset
|
10 | $shebang - --user |
356 | 11 | fi |
12 | ||
985
349ea9f736b9
try to use the same python as hg automatically
Meredith Howard <mhoward@roomag.org>
parents:
892
diff
changeset
|
13 | $shebang -m pip install --user --upgrade hg-evolve |
839
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
14 | |
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
15 | if ! grep -qsw evolve ~/.hgext/hgrc; then |
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
16 | printf '[extensions]\nevolve =\n' >> ~/.hgext/hgrc |
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
17 | fi |
0beae3c33263
switch to pip-based install
Meredith Howard <mhoward@roomag.org>
parents:
591
diff
changeset
|
18 | |
841 | 19 | if ! grep -qsw topic ~/.hgext/hgrc; then |
20 | printf '[extensions]\ntopic =\n' >> ~/.hgext/hgrc | |
21 | fi |