Skip to content

Instantly share code, notes, and snippets.

@deadghost
Created June 22, 2014 03:32
Show Gist options
  • Save deadghost/c63f69653226ade64e15 to your computer and use it in GitHub Desktop.
Save deadghost/c63f69653226ade64e15 to your computer and use it in GitHub Desktop.
evil magit
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Magit ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(add-hook 'magit-mode-hook
(lambda ()
(local-set-key (kbd "j") 'evil-next-line)
(local-set-key (kbd "k") 'evil-previous-line)
(local-set-key (kbd "K") 'magit-discard-item)
(local-set-key (kbd "<escape>") 'magit-mode-quit-window)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment