commit 2e507e4a477098f47981636866f0ca1e14b70fc5 parent eb39aa9b3920c7fe5c3cee2631c3f06e41ea2ec7 Author: Vincent Demeester <vincent@sbr.pm> Date: Thu, 23 Nov 2023 10:06:12 +0100 tools/emacs: add selection-highlight-mode Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/emacs/config/config-editing.el | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/tools/emacs/config/config-editing.el b/tools/emacs/config/config-editing.el @@ -165,5 +165,11 @@ If region is active, add its contents to the new buffer." :diminish :hook (prog-mode-hook . subword-mode)) +(use-package selection-highlight-mode + :preface + (unless (package-installed-p 'selection-highlight-mode) + (package-vc-install "https://github.com/balloneij/selection-highlight-mode")) + :config (selection-highlight-mode)) + (provide 'config-editing) ;;; config-editing.el ends here