mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
13 lines
381 B
EmacsLisp
13 lines
381 B
EmacsLisp
(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
|