This commit is contained in:
David Morgan 2022-11-01 12:12:19 +00:00
parent 9df48fb3ed
commit 667bc64d28
Signed by: djm
GPG Key ID: C171251002C200F2
2 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,6 @@
("C-^" . crux-top-join-line)
("C-<backspace>" . crux-kill-line-backwards)
([remap kill-whole-line] . crux-kill-whole-line)
("C-a" . crux-move-beginning-of-line)
;; TODO don't need all of these
("C-<return>" . crux-smart-open-line)
("S-<return>" . crux-smart-open-line)

View File

@ -174,5 +174,10 @@
:diminish
:hook (prog-mode . ws-butler-mode))
(use-package mwim
:bind
("C-a" . mwim-beginning)
("C-e" . mwim-end))
(provide 'init-editor)
;;; init-editor.el ends here