Browse Source

Add fixes for magit and evil-jumper

main
parent
commit
ee10b54841
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 12
      README.org

12
README.org

@ -1128,13 +1128,15 @@ in {
{
nix = {
binaryCaches = [
settings = {
substituters = [
"https://nix-community.cachix.org"
];
binaryCachePublicKeys = [
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
};
}
#+END_SRC
@ -2162,6 +2164,12 @@ epkgs.magit
"gc" '(magit-clone :which-key "Clone")
"gf" '(magit-fetch :which-key "Fetch")
"gp" '(magit-pull :which-key "Pull"))
;; Don't let `evil-jumper' override the <TAB> key.
(add-hook 'magit-mode-hook
(lambda ()
(when evil-jumper-mode
(evil-jumper-mode -1))))
#+END_SRC
** Hydra

Loading…
Cancel
Save