From 76a820a58cd590dcc99b7b03a9d05913dafbd219 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 17 Aug 2015 11:54:55 -0700 Subject: [PATCH] Fix auto-starting of server --- dotfiles/emacs.d/init.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 904a1c97..78b44e72 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -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)