summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/main.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index fc3e32d..8f643c0 100644
--- a/emacs/.emacs.d/main.el
+++ b/emacs/.emacs.d/main.el
@@ -434,8 +434,7 @@
 (use-package projectile-ripgrep
   :after (ripgrep projectile)
   :if (executable-find "rg")
-  :bind (:map projectile-command-map
-              ("s r" . projectile-ripgrep)))
+  :config (bind-key "s r" #'projectile-ripgrep projectile-command-map))
 
 ;;;;; Projectile
 
@@ -561,7 +560,8 @@
             (def-projectile-commander-method ?A
               "Find rg on project."
               (call-interactively #'counsel-projectile-rg))
-            (define-key counsel-projectile-command-map (kbd "s s") #'counsel-projectile-rg)))
+            (if (boundp 'counsel-projectile-command-map)
+                (define-key counsel-projectile-command-map (kbd "s s") #'counsel-projectile-rg))))
 
 ;;;;; vc