diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-09 09:12:52 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-10 17:14:03 -0800 |
commit | 4cddbe538172f2b236706f12a8d77d9842999a69 (patch) | |
tree | b8194a89215760c9e87f235cabfbdd69e54cd3a8 | |
parent | [emacs] disable magit and vcs mode. (diff) | |
download | emacs.d-4cddbe538172f2b236706f12a8d77d9842999a69.tar.gz |
[emacs] remove the exec-path-from-shell package.
Move the configuration to start the emacs server into a seperate file.
-rw-r--r-- | emacs.d/init.el | 5 | ||||
-rw-r--r-- | emacs.d/inits/00_emacs.el | 5 | ||||
-rw-r--r-- | emacs.d/inits/50_development.el | 4 |
3 files changed, 5 insertions, 9 deletions
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)) |