From 7148388de0888620530bca643b56f16cdce21728 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sat, 5 Aug 2023 23:41:36 -0700 Subject: [PATCH] feat: add `config-recompile` emacs function Signed-off-by: Lucas Sta Maria --- .emacs.d/include/misc.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.emacs.d/include/misc.el b/.emacs.d/include/misc.el index ac09dcb..bb3987f 100644 --- a/.emacs.d/include/misc.el +++ b/.emacs.d/include/misc.el @@ -9,6 +9,11 @@ (require 'elfeed) (require 'neotree) +(defun config-recompile () + "Recompile the current Emacs configuration." + (interactive) + (byte-recompile-directory "~/.emacs.d/")) + ;; Git Gutter (global-git-gutter-mode +1)