Move --server to init.el

This commit is contained in:
Marcus Kammer 2023-10-02 16:22:35 +02:00
parent 52facf3d93
commit cb4fc34a46
Signed by: marcuskammer
GPG key ID: C374817BE285268F
2 changed files with 7 additions and 6 deletions

View file

@ -1,5 +0,0 @@
(require 'server)
;; Start a server if (server-running-p) does not return t (e.g. if it
;; returns nil or :other)
(or (eq (server-running-p) t)
(server-start))

View file

@ -173,8 +173,14 @@
;; (holiday-float 11 3 1 "Buss- und Bettag" 16)
(holiday-float 11 0 1 "Totensonntag" 20)))
;;;
;;; bundle--server
(require 'server)
;; Start a server if (server-running-p) does not return t (e.g. if it
;; returns nil or :other)
(or (eq (server-running-p) t)
(server-start))
;;;
(load "bundle--server")
(load "bundle--customfile")
(load "bundle--package")
(load "bundle--org")