From 58bb81edebef5c51ca8fc9622c46cc346b290fa4 Mon Sep 17 00:00:00 2001 From: kj Date: Mon, 8 Sep 2025 09:45:54 -0300 Subject: [PATCH] enable global subword mode by default. --- configs/init-prog.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/init-prog.el b/configs/init-prog.el index 05bb74f..7d40d8f 100644 --- a/configs/init-prog.el +++ b/configs/init-prog.el @@ -181,5 +181,10 @@ Install the doc if it's not installed." :hook ((js-base-mode css-mode sgml-mode web-mode) . prettier-mode) :init (setq prettier-pre-warm 'none)) +(use-package subword + :ensure nil + :init + (global-subword-mode 1)) + (provide 'init-prog) ;;; init-prog.el ends here