mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
feat(emacs): LLM, LaTeX
This commit is contained in:
parent
9b19b8b834
commit
cb81828291
8 changed files with 161 additions and 47 deletions
13
tools/emacs.d/lisp/init-ai.el
Normal file
13
tools/emacs.d/lisp/init-ai.el
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue