forked from colonelpanic/dotfiles
Fix auto-starting of server
This commit is contained in:
parent
e9f6a72ee8
commit
76a820a58c
@ -411,8 +411,6 @@ The current directory is assumed to be the project's root otherwise."
|
|||||||
;; General Emacs Options
|
;; General Emacs Options
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
|
|
||||||
(unless (server-running-p) (server-start))
|
|
||||||
|
|
||||||
(global-auto-revert-mode)
|
(global-auto-revert-mode)
|
||||||
|
|
||||||
;; This makes it so that emacs --daemon puts its files in ~/.emacs.d/server
|
;; 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
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
|
|
||||||
|
(use-package server
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(unless (server-running-p) (server-start))))
|
||||||
|
|
||||||
(use-package list-environment
|
(use-package list-environment
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user