dotfiles/tools/emacs.d/lisp/init-keymaps.el

8 lines
286 B
EmacsLisp

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