mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
14 lines
400 B
EmacsLisp
14 lines
400 B
EmacsLisp
;; init-copilot.el -*- lexical-binding: t -*-
|
|
|
|
(use-package copilot
|
|
:straight (:host github :repo "copilot-emacs/copilot.el" :files ("*.el"))
|
|
:ensure t)
|
|
;; :hook (prog-mode . copilot-mode))
|
|
|
|
(use-package copilot-chat
|
|
:straight (:host github :repo "chep/copilot-chat.el" :files ("*.el"))
|
|
:after (request org markdown-mode shell-maker))
|
|
|
|
(provide 'init-copilot)
|
|
;;; init-copilot.el ends here
|