Commit 2e507e4a4770
Changed files (1)
tools
emacs
config
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