From 69100cfaeb89811a29924f7bd320a601807bfc0d Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 23 Mar 2024 19:51:49 +0100 Subject: [PATCH] Also symlink configuration --- scripts/p7s/emacs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/p7s/emacs.py b/scripts/p7s/emacs.py index 3f46f3e..633aab5 100644 --- a/scripts/p7s/emacs.py +++ b/scripts/p7s/emacs.py @@ -6,3 +6,4 @@ import p7s def setup_emacs(): p7s.BASHRC_D.mkdir(parents=True, exist_ok=True) subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.bash").absolute(), p7s.BASHRC_D / "emacs.bash"], check=True) + subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.el").absolute(), pathlib.Path.home() / ".emacs"], check=True) -- 2.47.3