Fix auto-starting of server

This commit is contained in:
Ivan Malison 2015-08-17 11:54:55 -07:00
parent e9f6a72ee8
commit 76a820a58c

View File

@ -411,8 +411,6 @@ The current directory is assumed to be the project's root otherwise."
;; General Emacs Options
;; =============================================================================
(unless (server-running-p) (server-start))
(global-auto-revert-mode)
;; This makes it so that emacs --daemon puts its files in ~/.emacs.d/server
@ -473,6 +471,11 @@ The current directory is assumed to be the project's root otherwise."
;; use-package
;; =============================================================================
(use-package server
:config
(progn
(unless (server-running-p) (server-start))))
(use-package list-environment
:ensure t)