copilot
This commit is contained in:
parent
b289b608e9
commit
3d6cf462d0
|
@ -153,3 +153,11 @@
|
|||
lsp-ui-doc-show-with-mouse t ;; Show doc on mouse hover
|
||||
lsp-ui-doc-delay 0.2 ;; Delay before showing
|
||||
lsp-ui-doc-position 'at-point)) ;; Show at point instead of sidebar
|
||||
;; accept completion from copilot and fallback to completion
|
||||
(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)))
|
||||
|
|
|
@ -51,3 +51,8 @@
|
|||
|
||||
(package! org-journal)
|
||||
(package! org-download)
|
||||
|
||||
(package! editorconfig)
|
||||
(package! jsonrpc)
|
||||
(package! copilot
|
||||
:recipe (:host github :repo "copilot-emacs/copilot.el" :files ("*.el")))
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
* Task Description
|
||||
|
||||
|
||||
* Subtasks
|
||||
|
||||
|
||||
* Deadline
|
||||
|
||||
|
||||
* Links
|
Loading…
Reference in New Issue