diff --git a/init.el b/init.el index b452f9e..d504ad6 100644 --- a/init.el +++ b/init.el @@ -217,6 +217,15 @@ ((t (:inherit ace-jump-face-foreground :height 3.0)))) )) +(use-package multiple-cursors + :straight t + :bind + (("C-S-c C-S-c" . mc/edit-lines) + ("C->" . mc/mark-next-like-this) + ("C-<" . mc/mark-previous-like-this) + ("C-c C-<" . mc/mark-all-like-this))) +(global-set-key (kbd "C-S-") 'mc/add-cursor-on-click) + ;; Ivy completion (use-package ivy :straight t