Created
May 3, 2012 00:01
-
-
Save legumbre/2582046 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq emacs-lisp-mode-hook nil) ;; remove this once you're sure it works | |
(add-hook 'emacs-lisp-mode-hook 'enable-paredit-mode) | |
(defun faster-cursor-movement () | |
(progn | |
(define-key paredit-mode-map (kbd "C-M-p") (lambda () (interactive) (previous-line 5))) | |
(define-key paredit-mode-map (kbd "C-M-n") (lambda () (interactive) (next-line 5))))) | |
(eval-after-load 'paredit '(faster-cursor-movement)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment