General cleanup & refactor

This commit is contained in:
Henrik Lissner 2017-08-06 16:30:53 +02:00
parent a76693c7e2
commit 85c28444b3
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 6 additions and 6 deletions

View file

@ -148,7 +148,7 @@ local value, whether or not it's permanent-local. Therefore, we cycle
;; undo/redo changes to Emacs' window layout
(defvar winner-dont-bind-my-keys t) ; I'll bind keys myself
(autoload 'winner-mode "winner" nil t)
(add-hook 'doom-init-hook #'winner-mode)
(add-hook 'doom-init-ui-hook #'winner-mode)
;; highlight matching delimiters
(setq show-paren-delay 0.1
@ -185,7 +185,7 @@ local value, whether or not it's permanent-local. Therefore, we cycle
;; Getting themes to remain consistent across GUI Emacs, terminal Emacs and
;; daemon Emacs is hairy.
;;
;; + Running `+doom|init-ui' directly sorts out the initial GUI frame.
;; + Running `doom|init-ui' directly sorts out the initial GUI frame.
;; + Attaching it to `after-make-frame-functions' sorts out daemon Emacs.
;; + Waiting for 0.1s in `doom|reload-ui-in-daemon' fixes daemon Emacs started
;; with `server-start' in an interactive session of Emacs AND in tty Emacs.