.emacs.d/inits/00-reload.el
2026-01-10 18:58:26 +09:00

6 lines
146 B
EmacsLisp

(defun reload-init ()
"Reload the init file."
(interactive)
(load-file "~/.emacs.d/init.el"))
(global-set-key (kbd "C-c \\") 'reload-init)