Split apart generated .el files a bit; smartparens improvements
Plus probably some miscellaneous other stuff
This commit is contained in:
parent
93f0929a9e
commit
a0d37bdb00
@ -5,8 +5,13 @@
|
||||
;; right Org version, then tangle ~/.emacs.d/init.org to
|
||||
;; ~/.emacs.d/jdormit-init.el
|
||||
|
||||
(when (not (file-exists-p
|
||||
(expand-file-name "~/.emacs.d/jdormit-init.el")))
|
||||
(defvar init-org-file (expand-file-name "~/.emacs.d/init.org"))
|
||||
(defvar config-base-file (expand-file-name "~/.emacs.d/config/base.el"))
|
||||
|
||||
(when (not (file-exists-p "~/.emacs.d/config"))
|
||||
(make-directory "~/.emacs.d/config"))
|
||||
|
||||
(when (not (file-exists-p config-base-file))
|
||||
(message "Bootstrapping init file...")
|
||||
(defvar bootstrapping-init t)
|
||||
(defvar bootstrap-version)
|
||||
@ -25,8 +30,6 @@
|
||||
|
||||
(straight-use-package 'org-plus-contrib)
|
||||
(require 'org)
|
||||
(org-babel-tangle-file
|
||||
(expand-file-name "~/.emacs.d/init.org")
|
||||
(expand-file-name "~/.emacs.d/jdormit-init.el")))
|
||||
(org-babel-tangle-file init-org-file))
|
||||
|
||||
(load-file (expand-file-name "~/.emacs.d/jdormit-init.el"))
|
||||
(load-file config-base-file)
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user