From a28075347bffcd5705a110278bc727487597ff60 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 15 Sep 2017 13:40:10 +0200 Subject: [PATCH] [Misc] Start server when on Windows --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index 56451e3..1df688d 100644 --- a/init.el +++ b/init.el @@ -218,6 +218,11 @@ '(defun enriched-decode-display-prop (start end &optional param) (list start end))) + ;; Start Server when on Windows + + (when (eq system-type 'windows-nt) + (server-start)) + t) (add-hook 'after-init-hook #'db/run-init)