Improve emacs startup with a new hook.

This commit is contained in:
KJ
2024-04-27 01:24:25 -04:00
parent 2fd710ea54
commit b8cb8e3ad6
2 changed files with 11 additions and 3 deletions

View File

@ -94,5 +94,12 @@ If PROJECT is not specified, assume current project root."
(setq title-bar-maximixed t)))
)
;; Creando un hook para luego de que el theme ha cargado
(defvar after-load-theme-hook nil
"Hook run after a color theme is loaded using `load-theme'.")
(defadvice load-theme (after run-after-load-theme-hook activate)
"Run `after-load-theme-hook'."
(run-hooks 'after-load-theme-hook))
(provide 'init-functions)
;;; init-functions.el ends here.