Last active
September 11, 2023 18:35
-
-
Save fipar/816b8bf9f57d177da0ed28392b7baf39 to your computer and use it in GitHub Desktop.
copilot.el
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(execute-on-machine work-machine (add-to-list 'load-path | |
"~/l360/src/extern/copilot.el")) | |
(execute-on-machine work-machine (progn | |
(require 'copilot) | |
(define-key copilot-completion-map (kbd "y") 'copilot-accept-completion) | |
(define-key copilot-completion-map (kbd "n") 'copilot-next-completion) | |
(define-key copilot-completion-map (kbd "c") 'copilot-clear-overlay) | |
(global-set-key (kbd "s-u") 'copilot-complete) | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment