Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
takeokunn committed Aug 29, 2024
1 parent 9ab19b3 commit f238436
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions index.org
Original file line number Diff line number Diff line change
Expand Up @@ -7956,6 +7956,15 @@ https://github.com/ch11ng/exwm/wiki#gpg-pinentry
;; (setopt exwm-modeline-short t))))
#+end_src
* AI
** chatgpt-shell
#+begin_src emacs-lisp :tangle yes
(eval-when-compile
(el-clone :repo "xenodium/chatgpt-shell"))

(with-delayed-execution
(message "Install chatgpt-shell...")
(add-to-list 'load-path (locate-user-emacs-file "el-clone/chatgpt-shell")))
#+end_src
** copilot.el
#+begin_src emacs-lisp :tangle yes
(eval-when-compile
Expand All @@ -7976,6 +7985,19 @@ https://github.com/ch11ng/exwm/wiki#gpg-pinentry
(define-key copilot-mode-map (kbd "C-c # i") #'copilot-complete)
(define-key copilot-mode-map (kbd "C-c # a") #'copilot-accept-completion)))
#+end_src
** copilot-chat.el
#+begin_src emacs-lisp :tangle yes
(eval-when-compile
(el-clone :repo "chep/copilot-chat.el"))

(with-delayed-execution
(message "Install copilot-chat...")
(add-to-list 'load-path (locate-user-emacs-file "el-clone/copilot-chat"))

(autoload-if-found '(copilot-chat-shell-maker-init) "copilot-chat-shell-maker" nil t)

(copilot-chat-shell-maker-init))
#+end_src
** llm
#+begin_src emacs-lisp :tangle yes
(eval-when-compile
Expand Down

0 comments on commit f238436

Please sign in to comment.