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.

8 lines
324 B

  1. (let ((host-file (concat "~/.local/source/dotfiles/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 "~/.local/source/dotfiles/modules/" (symbol-name m) ".el")))
  6. (when (file-exists-p mod-file)
  7. (load-file mod-file))))