Add some references on myconfig.org

main
Sergio Alvariño 2 years ago
parent 5cb5d21717
commit 257b27719a

@ -38,12 +38,14 @@
;; Helper function for loading elisp files
(defun load-elisp-if-exists (f)
"load the elisp file only if it exists and is readable"
(if (file-readable-p f)
(if (and (file-exists-p f)
(file-readable-p f))
(load-file f)))
;; Helper function for loading org-mode files
(defun load-orgfile-if-exists (f)
"load the elisp file only if it exists and is readable"
(if (file-readable-p f)
(if (and (file-exists-p f)
(file-readable-p f))
(org-babel-load-file f)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

@ -19,6 +19,8 @@
- [[https://github.com/daviwil/dotfiles/blob/master/Emacs.org][System Crafters]]
- [[https://github.com/daviwil/emacs-from-scratch/blob/master/Emacs.org][System Crafters emacs-from-scratch]]
- [[https://github.com/SystemCrafters/crafter-configs][System Crafters configs compilation]]
- [[https://github.com/oantolin/emacs-config][Omar Antolin]]
- [[https://bitbucket.org/hyunlee1o/dotfiles/src/main/.emacs.d/init.el][hyunlee1o]]
* Before this file loads
** The =early-init.el= file has been loaded.

Loading…
Cancel
Save