From 1fae682817a3403bac2d7bd19ec2346572b8f6bc Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 12 Feb 2016 15:39:00 -0800 Subject: [emacs] Move some packages to a new config file. Create the new "editor" package that will contains configure some external packages related to the editor itself. --- emacs.d/inits/10_editor.el | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 emacs.d/inits/10_editor.el diff --git a/emacs.d/inits/10_editor.el b/emacs.d/inits/10_editor.el new file mode 100644 index 0000000..af0ee01 --- /dev/null +++ b/emacs.d/inits/10_editor.el @@ -0,0 +1,10 @@ +(use-package exec-path-from-shell + :ensure t + :config + (exec-path-from-shell-initialize) + (exec-path-from-shell-copy-envs '("TMPDIR" "GOPATH"))) + +(use-package server + :config + (unless (server-running-p) + (server-start))) -- cgit 1.4.1