[emacs] Fix bug on KDE

This commit is contained in:
John Doty 2026-06-10 10:03:11 -07:00
parent 3475c0dc58
commit 23d85a446a
2 changed files with 7 additions and 9 deletions

View file

@ -252,10 +252,9 @@
;; Cleanup all the whitespaces.
(add-hook 'before-save-hook 'whitespace-cleanup)
;; Fix path loading on MacOS X
(when (memq window-system '(mac ns))
(use-package exec-path-from-shell :ensure t)
(exec-path-from-shell-initialize))
;; Fix path loading on MacOS X... and KDE 44 apparently
(use-package exec-path-from-shell :ensure t)
(exec-path-from-shell-initialize)
;;; Stefan Monnier <foo at acm.org>. It is the opposite of fill-paragraph
(defun unfill-paragraph (&optional region)