1
0
Fork 0
dotfiles/.emacs.d/include/priime-ai.el
Lucas Sta Maria a944059095
feat(emacs): add priime-ai package
I was convinced to. This is not of my own free will.

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2024-11-21 20:50:30 -05:00

18 lines
482 B
EmacsLisp

;;; priime-ai.el --- AI completion -*- lexical-binding: t -*-
;;; Commentary:
;; Contains configuration for AI completion.
;;; Code:
(use-package gptel :straight t)
(use-package copilot
:straight (copilot :type git :host github :repo "copilot-emacs/copilot.el"))
(use-package copilot-chat
:straight (copilot-chat :type git :host github :repo "chep/copilot-chat.el")
:after (copilot org markdown-mode request shell-maker))
(provide 'priime-ai)
;;; priime-ai.el ends here