I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.0 KiB

4 years ago
4 years ago
  1. (let ((host-file (concat user-emacs-directory "/hosts/" system-name ".el")))
  2. (when (file-exists-p host-file)
  3. (load-file host-file)))
  4. (dolist (m dotfiles/modules)
  5. (let ((mod-file (concat dotfiles/home "/modules/" (symbol-name m) ".el")))
  6. (when (file-exists-p mod-file)
  7. (load-file mod-file))))
  8. (custom-set-variables
  9. ;; custom-set-variables was added by Custom.
  10. ;; If you edit it by hand, you could mess it up, so be careful.
  11. ;; Your init file should contain only one such instance.
  12. ;; If there is more than one, they won't work right.
  13. '(org-agenda-files
  14. (quote
  15. ("/home/chris/.local/source/secrets/org/birthdays.org" "/home/chris/.local/source/secrets/org/courses.org" "/home/chris/.local/source/secrets/org/holidays.org" "/home/chris/.local/source/dotfiles/daily/20210201"))))
  16. (custom-set-faces
  17. ;; custom-set-faces was added by Custom.
  18. ;; If you edit it by hand, you could mess it up, so be careful.
  19. ;; Your init file should contain only one such instance.
  20. ;; If there is more than one, they won't work right.
  21. )