+ Add doom-init-hook and doom-post-init-hook to simplify Emacs init hooks into less ambiguous ones. + Attach former after-init-hook and emacs-startup-hook hooks to new doom init hooks. + Vastly improves daemon and tty support: preventing incorrect colors from bleeding across face class barriers, and into GUI Emacs and vice versa, when spawned with emacsclient. + Fix persp-mode breaking Emacs daemon, and ensuring that initialization is done properly in terminal Emacs (and emacsclient frames).
9 lines
289 B
EmacsLisp
9 lines
289 B
EmacsLisp
;;; ui/evil-goggles/config.el -*- lexical-binding: t; -*-
|
|
|
|
(def-package! evil-goggles
|
|
:when (featurep! :feature evil)
|
|
:commands evil-goggles-mode
|
|
:init
|
|
(setq evil-goggles-duration 0.1
|
|
evil-goggles-enable-delete nil)
|
|
(add-hook 'doom-post-init-hook #'evil-goggles-mode t))
|