Added consult-gh support.

This commit is contained in:
Micheal Smith 2026-02-13 23:22:54 -06:00
parent b44d7d1c91
commit d472553fa3
Signed by: xulfer
GPG key ID: E40750BFE6702504
2 changed files with 55 additions and 0 deletions

View file

@ -1502,6 +1502,34 @@ forge support really.
:after (magit))
#+end_src
** Consult Github Integration
In an effort to reduce switching to the browser, or searching through
repositories in general... I'm using [[https://github.com/armindarvish/consult-gh][consult-gh]].
#+BEGIN_SRC emacs-lisp
(use-package consult-gh
:ensure (:host github :repo "armindarvish/consult-gh")
:after consult
:config
(require 'consult-gh-transient)
#+END_SRC
The package offers embark, and magit-forge support. As I use both of
those I'll go ahead and enable it.
#+BEGIN_SRC emacs-lisp
(use-package consult-gh-embark
:after consult-gh
:config
(consult-gh-embark-mode +1))
(use-package consult-gh-forge
:after consult-gh
:config
(consult-gh-forge-mode +1))
#+END_SRC
* Language Server Protocol
LSP can be quite helpful for completions that are non-trivial. There are many

View file

@ -22,3 +22,30 @@ forge support really.
:after (magit))
#+end_src
** Consult Github Integration
In an effort to reduce switching to the browser, or searching through
repositories in general... I'm using [[https://github.com/armindarvish/consult-gh][consult-gh]].
#+BEGIN_SRC emacs-lisp
(use-package consult-gh
:ensure (:host github :repo "armindarvish/consult-gh")
:after consult
:config
(require 'consult-gh-transient))
#+END_SRC
The package offers embark, and magit-forge support. As I use both of
those I'll go ahead and enable it.
#+BEGIN_SRC emacs-lisp
(use-package consult-gh-embark
:after consult-gh
:config
(consult-gh-embark-mode +1))
(use-package consult-gh-forge
:after consult-gh
:config
(consult-gh-forge-mode +1))
#+END_SRC