Commit 2e507e4a4770

Vincent Demeester <vincent@sbr.pm>
2023-11-23 10:06:12
tools/emacs: add selection-highlight-mode
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent eb39aa9
Changed files (1)
tools
emacs
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