feat(emacs): Basic emacs setup

This commit is contained in:
js0ny 2025-01-28 14:27:46 +00:00
parent 2346c13564
commit 6edb5d9e90
7 changed files with 134 additions and 0 deletions

View file

@ -0,0 +1,11 @@
;;; 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)