From f245f20fa0879e0acd03421d860b73d971e503a0 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Thu, 9 Oct 2014 14:06:59 -0400 Subject: [PATCH] Start an Emacs server at the end of init.el --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index 21aea161d..4f73cd634 100644 --- a/init.el +++ b/init.el @@ -31,3 +31,8 @@ ;; Ultimate configuration decisions are given to the user who can defined ;; them in his/her ~/.spacemacs file (dotspacemacs/config)) + +;; start a server for subsequent emacs clients +(require 'server) +(unless (server-running-p) + (server-start))