about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2023-03-11 13:23:57 +0000
committerDavid Morgan <djm_uk@protonmail.com>2023-03-11 13:23:57 +0000
commit85fefec4037ad270b6bb5c14780b093a3ba2f0fb (patch)
treef3a8dde5a193da90da76b8d93a60f8318935a170 /.emacs.d
parent8764ad6c8687250227ae5b11b35f544b57fcdb4b (diff)
downloaddotfiles-85fefec4037ad270b6bb5c14780b093a3ba2f0fb.tar.gz
Add titlecase
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-editor.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el
index 01ece4f..29e5de3 100644
--- a/.emacs.d/lisp/init-editor.el
+++ b/.emacs.d/lisp/init-editor.el
@@ -211,5 +211,9 @@
   :custom (editorconfig-trim-whitespaces-mode 'ws-butler-mode)
   :hook (emacs-startup . editorconfig-mode))
 
+(use-package titlecase
+  ;; TODO find a better binding
+  :bind ("C-c c t t" . titlecase-dwim))
+
 (provide 'init-editor)
 ;;; init-editor.el ends here