Always start server

This commit is contained in:
m.fries
2024-07-10 12:42:38 +02:00
parent 48a85d7bec
commit 58151c9f8b

View File

@@ -394,4 +394,12 @@
(when (current-buffer-matches-file-p) (set-buffer-modified-p nil))
(kill-buffer))
;; Start the emacs server
;; This is necessary for the emacsclient to work
(use-package server
:straight nil
:config
(unless (server-running-p)
(server-start)))
(provide 'init)