mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
15 lines
371 B
EmacsLisp
15 lines
371 B
EmacsLisp
;;; gptel.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package gptel
|
|
:ensure t
|
|
:commands (gptel gptel-send gptel-rewrite)
|
|
:config
|
|
(let ((private-config
|
|
(expand-file-name "lisp/misc/gptel-private.el" user-emacs-directory)))
|
|
(when (file-readable-p private-config)
|
|
(load private-config nil 'nomessage))))
|
|
|
|
(provide 'fscotto-gptel)
|
|
|
|
;;; gptel.el ends here
|