Untrack init.el and packages.el

This commit is contained in:
TEC 2020-12-24 04:17:46 +08:00
parent e75ea48833
commit 32caf16794
Signed by: tec
GPG Key ID: 779591AFDB81F06C
3 changed files with 5 additions and 2 deletions

2
.gitignore vendored
View File

@ -3,6 +3,8 @@ _minted-config
abbrev.el
config.*
!config.org
init.el
packages.el
setup.sh
!publish

View File

@ -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

View File

@ -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))