Skip to content

Instantly share code, notes, and snippets.

@keslerm
Created November 20, 2014 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save keslerm/c69c58835ba70ad06257 to your computer and use it in GitHub Desktop.
Save keslerm/c69c58835ba70ad06257 to your computer and use it in GitHub Desktop.
(defvar multiple-cursors-packages
'(
multiple-cursors
)
"List of all packages to install and/or initialize. Built-in packages
which require an initialization must be listed explicitly in the list.")
(defvar multiple-cursors/init-multiple-cursors ()
(use-package multiple-cursors
:config
(define-key mc/edit-lines (kbd "C-S-c C-S-c") nil)
(define-key mc/mark-next-like-this (kbd "C->") nil)
(define-key mc/mark-previous-like-this (kbd "C-<") nil)
(define-key mc/mark-all-like-this (kbd "C-c C-<") nil)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment