From 4cddbe538172f2b236706f12a8d77d9842999a69 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 9 Nov 2015 09:12:52 -0800 Subject: [emacs] remove the exec-path-from-shell package. Move the configuration to start the emacs server into a seperate file. --- emacs.d/init.el | 5 ----- emacs.d/inits/00_emacs.el | 5 +++++ emacs.d/inits/50_development.el | 4 ---- 3 files changed, 5 insertions(+), 9 deletions(-) (limited to 'emacs.d') diff --git a/emacs.d/init.el b/emacs.d/init.el index 2ec87da..848a2c9 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -25,8 +25,3 @@ :config (setq init-loader-show-log-after-init t) (init-loader-load (locate-user-emacs-file "inits"))) - -(use-package server - :config - (unless (server-running-p) - (server-start))) 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)) -- cgit 1.4.1