Added consult-gh support.
This commit is contained in:
parent
b44d7d1c91
commit
d472553fa3
2 changed files with 55 additions and 0 deletions
28
README.org
28
README.org
|
|
@ -1502,6 +1502,34 @@ forge support really.
|
||||||
:after (magit))
|
:after (magit))
|
||||||
#+end_src
|
#+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
|
* Language Server Protocol
|
||||||
|
|
||||||
LSP can be quite helpful for completions that are non-trivial. There are many
|
LSP can be quite helpful for completions that are non-trivial. There are many
|
||||||
|
|
|
||||||
|
|
@ -22,3 +22,30 @@ forge support really.
|
||||||
:after (magit))
|
:after (magit))
|
||||||
#+end_src
|
#+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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue