diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2018-04-17 09:10:59 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2018-04-17 09:10:59 -0700 |
commit | d1a28879f0269700869d7c950fed9d689696f370 (patch) | |
tree | d6770c20a27e6a2b5639342647d3779be2646793 | |
parent | [emacs] Rewrite the python module. (diff) | |
download | emacs.d-d1a28879f0269700869d7c950fed9d689696f370.tar.gz |
[emacs] some more hydra stuff.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/modules/module-pants.el | 2 | ||||
-rw-r--r-- | emacs.d/modules/module-project.el | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/emacs.d/modules/module-pants.el b/emacs.d/modules/module-pants.el index 85d7fec..579c298 100644 --- a/emacs.d/modules/module-pants.el +++ b/emacs.d/modules/module-pants.el @@ -12,7 +12,7 @@ :bind (("C-c b" . pants-find-build-file) ("C-c r" . pants-run-binary) ("C-c t" . pants-run-test) - ("C-c p" . hydra-pants/body))) + ("C-c h" . hydra-pants/body))) (defhydra hydra-pants (:hint nil :exit t) " diff --git a/emacs.d/modules/module-project.el b/emacs.d/modules/module-project.el index cb11e0d..1dd46cf 100644 --- a/emacs.d/modules/module-project.el +++ b/emacs.d/modules/module-project.el @@ -1,3 +1,4 @@ +(require 'config-env) (require 'config-package) (defhydra hydra-projectile-other-window (:color teal) @@ -46,7 +47,7 @@ _s-f_: file _a_: ag _i_: Ibuffer _c_: cache (use-package projectile :diminish projectile-mode :bind-keymap ("C-c p" . projectile-command-map) - :bind (("C-c C-p" . hydra-projectile/body)) + :bind (("M-p" . hydra-projectile/body)) :init (add-hook 'after-init-hook #'projectile-mode) |