feat: add multiple cursors to emacs

This commit is contained in:
Swarsel 2024-12-15 15:03:14 +01:00
parent 11bf6288c4
commit 699709c1d6
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 18 additions and 0 deletions

View file

@ -10285,6 +10285,10 @@ I also define some keybinds to some combinations directly. Those are used mostly
"<Copy>" 'kill-ring-save
"<undo>" 'evil-undo
"<redo>" 'evil-redo
"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
)
@ -13196,3 +13200,11 @@ This sets up the =dashboard=, which is really quite useless. But, it looks cool
(add-to-list 'vterm-eval-cmds '("find-file-other-window"
me/vterm--find-file-other-window-wrapper))
#+end_src
*** multiple cursors
#+begin_src emacs-lisp
(use-package multiple-cursors)
#+end_src