diff --git a/init.org b/init.org index 7d917e8..4a3c92f 100644 --- a/init.org +++ b/init.org @@ -207,8 +207,7 @@ (let* ((package--builtins nil) (packages - '(multiple-cursors ; Multiple cursors for Emacs - nano-modeline ; N Λ N O modeline + '(nano-modeline ; N Λ N O modeline nano-theme ; N Λ N O theme nix-mode ; Major mode for editing .nix files olivetti ; Minor mode for a nice writing environment @@ -983,6 +982,21 @@ #+end_src +* Multiple cursors + + I use this /all the time/. Perhaps more than I should? + + #+begin_src emacs-lisp + + ;; Multiple cursors for Emacs + (use-package multiple-cursors + :defer t + :bind (("C-c e" . mc/edit-lines) + ("C-c a" . mc/mark-all-like-this) + ("C-c n" . mc/mark-next-like-this))) + + #+end_src + * Expand region This is neat, and I use it way less than I should.