From ddc622f270b05a3e6fde0419e162c142d3fa68b5 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 24 Sep 2024 20:49:14 +0200 Subject: [PATCH] Move config_new.org to config.org Use it as the main config now. --- config_new.org => config.org | 0 init.el | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename config_new.org => config.org (100%) diff --git a/config_new.org b/config.org similarity index 100% rename from config_new.org rename to config.org diff --git a/init.el b/init.el index 2ee5b47..e442e9c 100644 --- a/init.el +++ b/init.el @@ -6,7 +6,7 @@ (let ((gc-cons-threshold most-positive-fixnum)) (setq custom-file (expand-file-name "custom.el" user-emacs-directory)) ;; This is the actual config file. It is omitted if it doesn't exist so emacs won't refuse to launch. - (defvar my-config-file (expand-file-name "config_new.org" user-emacs-directory)) + (defvar my-config-file (expand-file-name "config.org" user-emacs-directory)) (when (file-readable-p my-config-file) (org-babel-load-file (expand-file-name my-config-file)))