summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-hygiene.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/custom/fcuny-hygiene.el')
-rw-r--r--emacs.d/custom/fcuny-hygiene.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-hygiene.el b/emacs.d/custom/fcuny-hygiene.el
new file mode 100644
index 0000000..2d74c82
--- /dev/null
+++ b/emacs.d/custom/fcuny-hygiene.el
@@ -0,0 +1,14 @@
+(use-package midnight
+  :config
+  (midnight-mode t))
+
+(use-package server
+  :hook (after-init . server-start))
+
+(use-package exec-path-from-shell
+  :ensure t
+  :if (memq window-system '(mac ns))
+  :config
+  (exec-path-from-shell-initialize))
+
+(provide 'fcuny-hygiene)