mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
16 lines
253 B
EmacsLisp
16 lines
253 B
EmacsLisp
;;; siren-mwim.el --- jimeh's Emacs Siren: mwim configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for mwim.
|
|
|
|
;;; Code:
|
|
|
|
(use-package mwim
|
|
:general
|
|
("C-a" 'mwim-beginning)
|
|
("C-e" 'mwim-end))
|
|
|
|
(provide 'siren-mwim)
|
|
;;; siren-mwim.el ends here
|