From 663852a2107028a6ca11c03dfe2a0cfab67a0fc0 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 2 Feb 2020 02:47:33 +0000 Subject: [PATCH] feat(editor): Add mwim package to replace custom function --- core/siren-core-modules.el | 2 +- modules/editor/siren-mwim.el | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 modules/editor/siren-mwim.el diff --git a/core/siren-core-modules.el b/core/siren-core-modules.el index 99bb6b6..ee12b89 100644 --- a/core/siren-core-modules.el +++ b/core/siren-core-modules.el @@ -29,6 +29,7 @@ (require 'siren-highlight-symbol) (require 'siren-ido) (require 'siren-minions) +(require 'siren-mwim) (require 'siren-rainbow) (require 'siren-smex) (require 'siren-undo-tree) @@ -55,7 +56,6 @@ (require 'siren-helm-ag) (require 'siren-helm-open-github) (require 'siren-helm-swoop) -(require 'siren-move-beginning-of-line) (require 'siren-scroll-half-screen) ;; Project management diff --git a/modules/editor/siren-mwim.el b/modules/editor/siren-mwim.el new file mode 100644 index 0000000..a930606 --- /dev/null +++ b/modules/editor/siren-mwim.el @@ -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