File tree 2 files changed +25
-0
lines changed 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -559,6 +559,9 @@ Documentation is available at https://www.emacswiki.org/emacs/SetupEl
559
559
(sup '(copilot :host github :repo "zerolfx/copilot.el"
560
560
:files ("dist" "*.el"))
561
561
nasy--require)
562
+ (sup '(copilot-chat :host github :repo "chep/copilot-chat.el"
563
+ :files ("*.el"))
564
+ nasy--require)
562
565
(sup 'corfu nasy--require)
563
566
(sup `(corfu-extensions
564
567
:local-repo ,(concat (straight--repos-dir "corfu") "extensions"))
Original file line number Diff line number Diff line change 30
30
(sup '(copilot :host github :repo "zerolfx/copilot.el"
31
31
:files ("dist" "*.el"))
32
32
t)
33
+ (sup 'shell-maker t)
34
+ (sup '(copilot-chat :host github :repo "chep/copilot-chat.el"
35
+ :files ("*.el"))
36
+ t)
33
37
(sup 'corfu t)
34
38
(sup `(corfu-extensions
35
39
:local-repo ,(concat (straight--repos-dir "corfu") "extensions")))
@@ -526,6 +530,24 @@ https://github.com/zerolfx/copilot.el
526
530
(:hook-into prog-mode-hook text-mode org-mode-hook emacs-lisp-mode-hook))
527
531
#+end_src
528
532
533
+ ** copilot chat :convenience:tools:
534
+
535
+ Chat with Github copilot in Emacs!
536
+
537
+ https://github.com/chep/copilot-chat.el
538
+
539
+ #+begin_src emacs-lisp
540
+ (setup copilot-chat
541
+ (:doc "Chat with Github copilot in Emacs!")
542
+ (:url "https://github.com/chep/copilot-chat.el")
543
+ (:tag "convenience" "tools")
544
+ (:opt copilot-chat-frontend 'shell-maker)
545
+ (:when-loaded
546
+ (require 'copilot-chat-shell-maker)
547
+ (push '(shell-maker . copilot-chat-shell-maker-init) copilot-chat-frontend-list)
548
+ (copilot-chat-shell-maker-init)))
549
+ #+end_src
550
+
529
551
** corfu :editing:extensions:
530
552
531
553
Corfu enhances the default completion in region function with a completion overlay.
You can’t perform that action at this time.
0 commit comments