Skip to content
Snippets Groups Projects
Commit 7b65227f authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Recompile la configuration au démarrage si nécessaire

parent 21817240
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,12 @@
(byte-recompile-directory (expand-file-name "~/.emacs.d") 0)
;; Byte-compile again to ~/.emacs.elc if it is outdated
(if (file-newer-than-file-p
(file-truename "~/.emacs.d/init.el")
(file-truename "~/.emacs.d/init.elc"))
(byte-compile-file "~/.emacs.d/init.el"))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment