From 28ba1a0aa2fc3c54ad41bdeb7cee9cf14a90c709 Mon Sep 17 00:00:00 2001 From: jowj Date: Sat, 7 Apr 2018 21:28:56 -0500 Subject: [PATCH] Add new default user-init file to fix issues on macOS --- .emacs.d/init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 375edad..bdd5b6a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -89,3 +89,9 @@ ;; turn on word-wrap globally (probably a mistake, but wanted for org-mode) (global-visual-line-mode t) + +;; run emacs as server (connect to it with `emacsclient`) +(server-start) + +;; set default init file so it stops fucking trying to write to bullshit files +(setq user-init-file "~/Documents/projects/agares/.emacs/init.el")