diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/00_emacs.el | 5 | ||||
-rw-r--r-- | emacs.d/inits/50_development.el | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/emacs.d/inits/00_emacs.el b/emacs.d/inits/00_emacs.el index 02ca40c..67b459b 100644 --- a/emacs.d/inits/00_emacs.el +++ b/emacs.d/inits/00_emacs.el @@ -18,3 +18,8 @@ (setq vc-follow-symlinks t) (setq tab-always-indent 'complete) + +(use-package server + :config + (unless (server-running-p) + (server-start))) diff --git a/emacs.d/inits/50_development.el b/emacs.d/inits/50_development.el index 526ec53..303e079 100644 --- a/emacs.d/inits/50_development.el +++ b/emacs.d/inits/50_development.el @@ -41,7 +41,3 @@ :defer t) (setq-default indent-tabs-mode nil) - -(use-package exec-path-from-shell - :config - (exec-path-from-shell-initialize)) |