diff options
-rw-r--r-- | emacs.d/inits/10_editor.el | 10 |
1 files changed, 10 insertions, 0 deletions
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))) |