dotfiles/tools/emacs.d/lisp/init-keymaps.el
2025-01-28 14:27:46 +00:00

11 lines
350 B
EmacsLisp

;;; init-keymaps.el
;; Once this is defined, `M-x open-init-file` will open this file
(defun open-init-file()
(interactive) ;; Mark function as `interactive` that allows user to access by M-x open-init-file RET
(find-file "~/.emacs.d/init.el"))
(defun reload-init()
(interactive)
(load-file "~/.emacs.d/init.el"))
(provide 'init-keymaps)