aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/text-editing.el
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-07-30 21:48:05 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-07-30 21:48:05 -0400
commitc1229075fbed30c7dcffc84e7ca11c2191dda11b (patch)
tree5a9b73cd7257880d06831e69f33041e0c8ff2c32 /.config/emacs/text-editing.el
parent8c4e09dff83847ac7f07bf1da7751e9328006c4d (diff)
more fixes to make it actually actually work
Diffstat (limited to '.config/emacs/text-editing.el')
-rw-r--r--.config/emacs/text-editing.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/emacs/text-editing.el b/.config/emacs/text-editing.el
index beee68c..48f07c5 100644
--- a/.config/emacs/text-editing.el
+++ b/.config/emacs/text-editing.el
@@ -16,15 +16,18 @@
;; mwim
(use-package mwim
+ :ensure t
:bind (("C-a" . mwim-beginning)
("C-e" . mwim-end-of-line)))
;; expand keybind
(use-package expand-region
+ :ensure t
:bind ("C-=" . er/expand-region))
;; better comment keybind
(use-package evil-nerd-commenter
+ :ensure t
:bind ("M-;" . evilnc-comment-or-uncomment-lines))
;; delete selected region when you type new text