From ed01dfb9182ad91a6ab3c6eeae8597d79a7ab26c Mon Sep 17 00:00:00 2001 From: Tristan Date: Tue, 26 Oct 2021 02:35:50 -0400 Subject: [PATCH] Remove redundant loading of `init.el` in home-manager installation instructions The home-manager already does this, which causes `init.el` to be loaded twice if the user also adds this snippet to their config. --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index aac7c48..a4b66f2 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,6 @@ let }; in { home.packages = [ doom-emacs ]; - home.file.".emacs.d/init.el".text = '' - (load "default.el") - ''; } ```