finalize: jonas@comfy-station

This commit is contained in:
2026-03-28 13:46:36 +01:00
parent 574e91135f
commit 0df3b7ebde
16 changed files with 335 additions and 336 deletions

View File

@@ -0,0 +1,8 @@
;; accept completion from copilot and fallback to company
(use-package! copilot
:hook (prog-mode . copilot-mode)
:bind (:map copilot-completion-map
("<tab>" . 'copilot-accept-completion)
("TAB" . 'copilot-accept-completion)
("C-TAB" . 'copilot-accept-completion-by-word)
("C-<tab>" . 'copilot-accept-completion-by-word)))