Emacs: install forked version of consult-ghq
Alan Pearce alan@alanpearce.eu
Fri, 16 Jun 2023 17:05:06 +0200
2 files changed, 32 insertions(+), 2 deletions(-)
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
M user/settings/emacs.nix → user/settings/emacs.nix
@@ -45,6 +45,28 @@ imports = [ ../modules/eshell.nix ]; + nixpkgs.overlays = [ + (self: super: { + emacsPackagesFor = emacs: + (super.emacsPackagesFor emacs).overrideScope' ( + eself: esuper: + ( + { + consult-ghq = esuper.consult-ghq.overrideAttrs + (oldAttrs: { + src = pkgs.fetchFromGitHub { + owner = "alanpearce"; + repo = "consult-ghq"; + rev = "3a0b366ef2e066c0d941a19d22d5a23d7f778535"; + sha256 = "0v7z61nx6xyhxbqkjangqrnay7pp74w4m90wfb29l99p1wkxqbzx"; + }; + }); + } + ) + ); + }) + ]; + programs.emacs = { enable = true; package = lib.mkDefault (pkgs.emacs.override { withGTK3 = true; }); @@ -90,6 +112,7 @@ company-posframe company-shell company-tabnine consult + consult-ghq # own override consult-eglot counsel crux