Slowly replace use-package with with-eval-after-load
This commit is contained in:
parent
c7b0c1c6c2
commit
1fe168ccc6
10 changed files with 360 additions and 377 deletions
|
|
@ -10,15 +10,13 @@
|
|||
|
||||
;;; Code:
|
||||
(use-package copilot
|
||||
:ensure (:host github :repo "copilot-emacs/copilot.el" :files ("*.el"))
|
||||
:bind (:map copilot-completion-map
|
||||
("<tab>" . copilot-accept-completion)
|
||||
("TAB" . copilot-accept-completion)))
|
||||
:ensure (:host github :repo "copilot-emacs/copilot.el" :files ("*.el")))
|
||||
|
||||
;; Do not enable copilot by default because it sorta sucks?
|
||||
;; (add-hook 'prog-mode-hook 'copilot-mode)
|
||||
;; (define-key copilot-completion-map (kbd "<tab>") 'copilot-accept-completion)
|
||||
;; (define-key copilot-completion-map (kbd "TAB") 'copilot-accept-completion)
|
||||
(with-eval-after-load 'copilot
|
||||
;; Do not enable copilot by default because it sorta sucks?
|
||||
;; (add-hook 'prog-mode-hook 'copilot-mode)
|
||||
(define-key copilot-completion-map (kbd "<tab>") 'copilot-accept-completion)
|
||||
(define-key copilot-completion-map (kbd "TAB") 'copilot-accept-completion))
|
||||
|
||||
;; Enable Anthropic Claude LLM support for chat (it also sucks)
|
||||
(defcustom anthropic-api-key "api-key" "The value of your Anthropic API key."
|
||||
|
|
@ -26,23 +24,26 @@
|
|||
:group 'icejam
|
||||
:initialize 'custom-initialize-set)
|
||||
|
||||
(use-package gptel :ensure t
|
||||
:config
|
||||
(use-package gptel :ensure t)
|
||||
(with-eval-after-load 'gptel
|
||||
(setq
|
||||
gptel-model "claude-3-5-sonnet-20240620"
|
||||
gptel-model "claude-3-5-sonnet-20241022"
|
||||
gptel-backend (gptel-make-anthropic "Claude"
|
||||
:stream t
|
||||
:key (lambda () anthropic-api-key))))
|
||||
|
||||
:stream t :key (lambda () anthropic-api-key))))
|
||||
|
||||
;; Pretend to be 'AI editor'.
|
||||
(use-package elysium :ensure t
|
||||
:custom
|
||||
(elysium-window-size 0.33) ; The elysium buffer will be 1/3 your screen
|
||||
(elysium-window-style 'vertical)) ; Can be customized to horizontal
|
||||
(use-package elysium :ensure t)
|
||||
(with-eval-after-load 'elysium
|
||||
(setq
|
||||
;; The elysium buffer will be 1/3 your screen
|
||||
elysium-window-size 0.33
|
||||
;; Elysium buffer will be vertical
|
||||
elysium-window-style 'vertical))
|
||||
|
||||
;; Merging with SMerge
|
||||
(use-package smerge-mode :ensure nil :hook (prog-mode . smerge-mode))
|
||||
(use-package smerge-mode :ensure nil)
|
||||
(with-eval-after-load 'smerge-mode
|
||||
(add-hook 'prog-mode-hook #'smerge-mode))
|
||||
|
||||
(provide 'icejam-copilot)
|
||||
;;; icejam-copilot.el ends here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue