emacs/init.el
Evie Litherland-Smith 5611ea77ff Make config src blocks silent output by default
Move python hook setting to python use-package block

Use locate-user-emacs-file for resolving paths inside
user-emacs-directory

Update my/open-init-file (was my/open-config-file) for new config structure
2024-02-15 08:45:37 +00:00

25 lines
907 B
EmacsLisp

;;; init -- My emacs config
;;; Commentary:
;; Moving my Emacs config from separate directory
;;; Code:
(dolist
(fname '(
"config/defaults.org" ;Common defaults that don't really sit anywhere else
"config/ui.org" ;Theme and associated setups
"config/ide.org" ;Setup to be an integrated development environment
"config/tramp.org" ;Setup for remote editing using `tramp'
"config/writing.org" ;Setup for writing documents
"config/org-mode.org" ;Setup for writing `org-mode' documents specifically
"config/pass.org" ;password-store integration
"config/internet.org" ;Email and feed reader config
"config/media.org" ;Music player using `emms'
))
(org-babel-load-file
(locate-user-emacs-file fname)))
(provide 'init)
;;; init.el ends here