INIT: Move customization to its own file that we can ignore

This commit is contained in:
Laurens Miers 2024-09-20 18:35:37 +02:00
parent 69010af86e
commit cdcd577939
2 changed files with 3 additions and 3 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
custom.el

View file

@ -4,13 +4,12 @@
;;; https://jonnay.github.io/emagicians-starter-kit/Emagician-Base.html ;;; https://jonnay.github.io/emagicians-starter-kit/Emagician-Base.html
;;; ... ;;; ...
(let ((gc-cons-threshold most-positive-fixnum)) (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. ;; 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_new.org" user-emacs-directory))
(when (file-readable-p my-config-file) (when (file-readable-p my-config-file)
(org-babel-load-file (expand-file-name my-config-file))) (org-babel-load-file (expand-file-name my-config-file)))
;; If it exists, load some project-specific configurations. (load custom-file)
;;(when (file-readable-p project-file)
;; (org-babel-load-file (expand-file-name project-file)))
) )