Emacs: install forked version of consult-ghq
1 file changed, 9 insertions(+), 2 deletions(-)
changed files
M user/emacs/init.el → user/emacs/init.el
@@ -899,13 +899,20 @@ ;;; Projects (use-package project :general (:keymaps 'project-prefix-map - "s" #'project-search - "o" #'consult-ghq-switch-project) + "s" #'project-search) :config (progn (with-eval-after-load 'evil-ex (evil-ex-define-cmd "pesh[ell]" #'project-eshell) (evil-ex-define-cmd "pb" #'project-switch-to-buffer) (evil-ex-define-cmd "psw[itch]" #'project-switch-project)))) + +(use-package consult-ghq + ;; :load-path "~/projects/github.com/tomoya/consult-ghq" + :general (:keymaps 'project-prefix-map + "o" #'consult-ghq-switch-project) + :config (progn + (setq consult-ghq-grep-function #'consult-grep + consult-ghq-find-function #'consult-find))) (use-package envrc :defer 2