aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2024-10-05 11:47:38 +0200
committeralexpdp7 <alex@corcoles.net>2024-10-05 12:06:46 +0200
commite039dbcf0ffe6c8ca0154b73861dabc060be2362 (patch)
tree6bfc1f5056c3e9148013200b6b22465da9ee02e7 /scripts
parent9e9514670605e48eb170b2c49a03494b43ec97a1 (diff)
Remove step which is now automated
Diffstat (limited to 'scripts')
-rw-r--r--scripts/p7s/emacs.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/p7s/emacs.py b/scripts/p7s/emacs.py
index d158afb8..93428887 100644
--- a/scripts/p7s/emacs.py
+++ b/scripts/p7s/emacs.py
@@ -10,11 +10,3 @@ def setup_emacs():
subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.bash").absolute(), p7s.BASHRC_D / "emacs.bash"], check=True)
(pathlib.Path.home() / ".emacs").unlink(missing_ok=True)
subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.el").absolute(), pathlib.Path.home() / ".emacs"], check=True)
-
- print(textwrap.dedent("""
- On Debian Bookworm, create /etc/apt/preferences.d/emacs with:
-
- Package: emacs-*
- Pin: release a=stable-backports
- Pin-Priority: 500
- """).lstrip())