feat(emacs): LLM, LaTeX

This commit is contained in:
js0ny 2025-05-13 21:01:06 +01:00
parent 9b19b8b834
commit cb81828291
8 changed files with 161 additions and 47 deletions

View file

@ -0,0 +1,13 @@
(use-package copilot
:vc (:url "https://github.com/copilot-emacs/copilot.el"
:rev :newest
:branch "main")
:hook (prog-mode . copilot-mode)
:config
(define-key copilot-completion-map (kbd "<tab>") 'copilot-accept-completion)
(define-key copilot-completion-map (kbd "TAB") 'copilot-accept-completion))
(provide 'init-ai)
;;; init-ai.el ends here