25 lines
922 B
EmacsLisp
25 lines
922 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
|
||
|
(expand-file-name fname user-emacs-directory)))
|
||
|
|
||
|
(provide 'init)
|
||
|
;;; init.el ends here
|