Add gptel to Emacs desktop profile

This commit is contained in:
Fabio Scotto di Santolo
2026-04-09 22:28:33 +02:00
parent 5d979d0bbb
commit acc6444067
8 changed files with 76 additions and 35 deletions

View File

@@ -0,0 +1,14 @@
;;; 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