19 lines
474 B
EmacsLisp
19 lines
474 B
EmacsLisp
;;; init -- My emacs config
|
|
|
|
;;; Commentary:
|
|
;; Moving my Emacs config from separate directory
|
|
|
|
;;; Code:
|
|
|
|
;; Stop popups for warning messages, keep in log buffer
|
|
(customize-set-variable 'warning-minimum-level :error)
|
|
|
|
(defvar my/config-files () "List of literate config files to load.")
|
|
|
|
(setq my/config-files (directory-files (locate-user-emacs-file "config") t ".org"))
|
|
|
|
(dolist (fname my/config-files) (org-babel-load-file fname))
|
|
|
|
(provide 'init)
|
|
;;; init.el ends here
|