This file contains 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
(use-package codeium | |
;; if you use straight | |
:elpaca '(codeium :type git :host github :repo "Exafunction/codeium.el") | |
;; otherwise, make sure that the codeium.el file is on load-path | |
:init | |
;; use globally | |
(add-to-list 'completion-at-point-functions #'codeium-completion-at-point) | |
;; or on a hook | |
;; (add-hook 'python-mode-hook |