feat(editor): Add mwim package to replace custom function

This commit is contained in:
2020-02-02 02:47:33 +00:00
parent 683ab9a8a1
commit 663852a210
2 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
;;; siren-mwim.el --- jimeh's Emacs Siren: mwim configuration.
;;; Commentary:
;; Basic configuration for mwim.
;;; Code:
(use-package mwim
:bind
("C-a" . mwim-beginning)
("C-e" . mwim-end))
(provide 'siren-mwim)
;;; siren-mwim.el ends here