summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs.d/modules/module-pants.el2
-rw-r--r--emacs.d/modules/module-project.el3
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)