Browse Source

added fix for el-job on windows systems

master
Marc Pohling 1 week ago
parent
commit
5ccacec623
1 changed files with 13 additions and 1 deletions
  1. 14
      config.org

14
config.org

@ -1854,10 +1854,22 @@ If nil it defaults to `split-string-default-separators', normally
https://github.com/meedstrom/org-node https://github.com/meedstrom/org-node
no sqlite, just plain text and linking with ids no sqlite, just plain text and linking with ids
not sure if actually better not sure if actually better
since commit on 2025-05-24 which edits el-job-max-cores for windows, it bugs out on the work setup,
because it fails to pull system info about the number of cores.
#+begin_src emacs-lisp
(when *work_remote*
(use-package el-job
:ensure t
:custom
(el-job-max-cores 4)))
#+end_src
#+begin_src emacs-lisp #+begin_src emacs-lisp
;;requirement for org-node ;;requirement for org-node
(use-package org-mem (use-package org-mem
:ensure (:host github :repo "meedstrom/org-mem"))
:ensure (:host github :repo "meedstrom/org-mem")
:after el-job)
(use-package org-node (use-package org-node
:ensure t :ensure t

Loading…
Cancel
Save