summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2024-01-27 12:49:58 +0000
committerGrégoire Duchêne <gduchene@awhk.org>2024-01-27 12:49:58 +0000
commitf220560b7bf015fb43b2bbfa12149447e155e849 (patch)
tree1a665c0309c8edf012aa64fc55fa1fcd759071ef
parent6ae73b8c76e070af8216d22f0991f0f4594b0fdb (diff)
emacs: Ensure Consult is installed
-rw-r--r--emacs/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index b545677..02c9227 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -72,7 +72,8 @@
(use-package consult
:bind (("C-x b" . consult-buffer)
- ("C-c s" . consult-ripgrep)))
+ ("C-c s" . consult-ripgrep))
+ :ensure t)
(use-package vertico :config (vertico-mode 1) :ensure t)