From 5bfe0ba53f60d1ecdc71e4a129c9a05b8a38790d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 26 Sep 2022 12:31:27 +0200 Subject: [PATCH] fix(cli): load $DOOMRC relative to $PWD Rather than doing so relative to bin/doom. --- bin/doom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doom b/bin/doom index 5b9149084..5d7f363c4 100755 --- a/bin/doom +++ b/bin/doom @@ -314,7 +314,7 @@ SEE ALSO: (let (doomrc) (cond ((setq doomrc (getenv "DOOMRC")) - (load! doomrc)) + (load! doomrc default-directory)) ((setq doomrc (locate-dominating-file default-directory ".doomrc")) (load! ".doomrc" doomrc)))))