summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-hygiene.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2020-03-15 19:14:06 -0700
committerFranck Cuny <franck.cuny@gmail.com>2020-03-15 19:14:06 -0700
commit896243c262208312a766953a6c02e69932bf71ed (patch)
treebc62d883c254c9219a46cbdf6825ea813fd8946f /emacs.d/custom/fcuny-hygiene.el
parentemacs: ensure a few more things are utf8 (diff)
downloademacs.d-896243c262208312a766953a6c02e69932bf71ed.tar.gz
emacs: consolidate basic configuration
The configuration for the module `midnight`, `emacs-server` and
`exec-path-from-shall` is moved to the package containing a bunch of
misc. settings.
Diffstat (limited to '')
-rw-r--r--emacs.d/custom/fcuny-hygiene.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/emacs.d/custom/fcuny-hygiene.el b/emacs.d/custom/fcuny-hygiene.el
deleted file mode 100644
index 1ef135f..0000000
--- a/emacs.d/custom/fcuny-hygiene.el
+++ /dev/null
@@ -1,15 +0,0 @@
-(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)