summary refs log tree commit diff
path: root/emacs.d/inits/10_editor.el
blob: af0ee01801fe2f02b9991594f09d4525c2822f5f (plain) (blame)
1
2
3
4
5
6
7
8
9
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)))