Start an Emacs server at the end of init.el

This commit is contained in:
syl20bnr 2014-10-09 14:06:59 -04:00
parent ccc557b62f
commit f245f20fa0
1 changed files with 5 additions and 0 deletions

View File

@ -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))