summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-hygiene.el
blob: 1ef135f8c9b85fdf3e4d2ec5bfd4047251aa4f91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(use-package midnight
  :config
  (midnight-mode t))

(use-package server
  :hook (after-init . server-start))

(use-package exec-path-from-shell
  :ensure t
  :init   (exec-path-from-shell-initialize)
  (when (memq window-system '(mac ns))
    (exec-path-from-shell-initialize))
  (exec-path-from-shell-copy-env "GOPATH"))

(provide 'fcuny-hygiene)