2024-02-15 08:18:41 +00:00
|
|
|
;;; 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
|
2024-02-15 08:45:37 +00:00
|
|
|
(locate-user-emacs-file fname)))
|
2024-02-15 08:18:41 +00:00
|
|
|
|
|
|
|
(provide 'init)
|
|
|
|
;;; init.el ends here
|