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.

10 lines
372 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. ;; Load the host configuration.
  2. (let ((host-file (concat user-emacs-directory "/hosts/" system-name ".el")))
  3. (when (file-exists-p host-file)
  4. (load-file host-file)))
  5. ;; Load the enabled modules.
  6. (dolist (m dotfiles/modules)
  7. (let ((mod-file (concat dotfiles/home "/modules/" (symbol-name m) ".el")))
  8. (when (file-exists-p mod-file)
  9. (load-file mod-file))))