diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-04-07 14:00:19 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-04-07 14:00:19 +0100 |
commit | 0f7038ed55d85c8c35d54a2ce2c834046755a977 (patch) | |
tree | bf7bebfe246308b1e2596bdb76cbd03df639217a | |
parent | 0f755b69775f271845874900d01e6a75a2f26921 (diff) | |
download | dotfiles-0f7038ed55d85c8c35d54a2ce2c834046755a977.tar.gz |
Add expand-region binding
-rw-r--r-- | .emacs.d/lisp/init-editor.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el index 7b896fc..cf127f5 100644 --- a/.emacs.d/lisp/init-editor.el +++ b/.emacs.d/lisp/init-editor.el @@ -135,7 +135,8 @@ and file 'filename' will be opened and cursor set on line 'linenumber'" ; (text-mode . (lambda () (flyspell-mode +1))) ; (prog-mode . (lambda () (flyspell-prog-mode)))) -(use-package expand-region) +(use-package expand-region + :bind ("C-=" . er/expand-region)) (use-package bookmark :custom |