diff --git a/.gitignore b/.gitignore index c72fa26..46562dd 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ _minted-config abbrev.el config.* !config.org +init.el +packages.el setup.sh !publish diff --git a/README.org b/README.org index 997a114..88a8b49 100644 --- a/README.org +++ b/README.org @@ -6,7 +6,7 @@ Here you may find my config. There is only one significant file: What you *really* want is the =M-x org-html-export-to-html= version of ~config.org~ (linked in the title). - In addition to the =html= export, this /produces/ the [[https://tecosaur.github.io/emacs-config/config.el.html][config.el]] file + In addition to the =html= export, this /produces/ the [[https://tecosaur.github.io/emacs-config/init.el.html][init.el]], [[https://tecosaur.github.io/emacs-config/config.el.html][config.el]], and [[https://tecosaur.github.io/emacs-config/packages.el.html][packages.el]] files. Other than that, snippets are (currently) sourced from the [[file:snippets/][snippets]] folder, resources are put in [[file:misc/][misc]], and you may find submodules for packages of mine in diff --git a/misc/config-exporter.sh b/misc/config-exporter.sh index c6bfaad..5de5a41 100755 --- a/misc/config-exporter.sh +++ b/misc/config-exporter.sh @@ -28,7 +28,6 @@ (setq exit-code 1)) (advice-add 'debug :around #'red-error) - (message "\033[0;34m[%.1fs] Opening config file: %s\033[90m" (- (float-time) start-time) (expand-file-name "../config.org")) @@ -44,7 +43,9 @@ (message "\033[0;33m[%.1fs] Htmlizing %s\033[0m" (- (float-time) start-time) (buffer-file-name)) +(htmlize-file (expand-file-name "../init.el")) (htmlize-file (expand-file-name "../config.el")) +(htmlize-file (expand-file-name "../packages.el")) (message "\033[1;32m[%.1fs] Config export complete!\033[0m" (- (float-time) start-time))