Skip to content

Commit

Permalink
feat: add copilot support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Panadestein committed Jan 28, 2025
1 parent ab7f3af commit 7a36c0c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions content/index.org
Original file line number Diff line number Diff line change
Expand Up @@ -994,10 +994,10 @@ However, the default configuration can be improved a bit:
ediff-split-window-function 'split-window-horizontally))
#+end_src

** ChatGPT
** LLMs

For the times they are a-changin'. Large language models are here to stay, and as cliche as it might sound,
they are the future. It comes then natural to have a nice Emacs package to query ChatGPT.
they are the future. It comes then natural to have a nice Emacs package to query different LLMs.

#+begin_src emacs-lisp
(use-package chatgpt-shell
Expand All @@ -1012,6 +1012,13 @@ they are the future. It comes then natural to have a nice Emacs package to query
(chatgpt-shell-openai-key (auth-source-pick-first-password :host "api.openai.com")))
#+end_src

We also add support for Copilot, which for certain languages is a good boilerplate killer:

#+begin_src emacs-lisp
(use-package copilot
:straight (:host github :repo "copilot-emacs/copilot.el" :files ("*.el")))
#+end_src

* File browsing, terminal emulators, and web browsing

** Terminal support with Vterm
Expand Down

0 comments on commit 7a36c0c

Please sign in to comment.