diff options
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index 152b181..4c5e8be 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -394,6 +394,12 @@ is as described by `emmet-expand-line'." ;;; Add Missing Extensions (dolist (pattern '("\\.tmac\\'" "\\.mom\\'")) - (add-to-list 'auto-mode-alist (cons pattern 'nroff-mode))) + (add-to-list 'auto-mode-alist (cons pattern #'nroff-mode))) -(provide 'mm-editing)
\ No newline at end of file + +;;; Subword Navigation + +(use-package subword + :hook prog-mode) + +(provide 'mm-editing) |