mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
feat(emacs): Basic emacs setup
This commit is contained in:
parent
2346c13564
commit
6edb5d9e90
7 changed files with 134 additions and 0 deletions
11
tools/emacs.d/lisp/init-keymaps.el
Normal file
11
tools/emacs.d/lisp/init-keymaps.el
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue