Fork me on GitHub
#emacs
<
2019-02-13
>
theeternalpulse22:02:50

I have this in the file I have my keybindings set up in

(use-package key-chord
  :ensure t
  :requires evil
  :config
  (setq key-chord-two-keys-delay 0.6)
  (key-chord-define evil-insert-state-map "qw" 'evil-write)
  (key-chord-mode 1)
  )   
and it works great when I eval, but restarting emacs doesn't trigger it

theeternalpulse22:02:01

nm, had to use :after evil