Add aidermacs
This commit is contained in:
parent
abdd31f143
commit
9e35eac91a
2 changed files with 15 additions and 2 deletions
|
@ -496,6 +496,17 @@
|
||||||
|
|
||||||
;; (setq! magit-gptcommit-llm-provider (make-llm-openai-compatible :key "OPENAI-KEY" :url "http://100.64.0.3:8080/v1/")
|
;; (setq! magit-gptcommit-llm-provider (make-llm-openai-compatible :key "OPENAI-KEY" :url "http://100.64.0.3:8080/v1/")
|
||||||
|
|
||||||
|
(use-package! aidermacs
|
||||||
|
:bind (("C-c a" . aidermacs-transient-menu))
|
||||||
|
:config
|
||||||
|
;; (setenv "ANTHROPIC_API_KEY" "sk-...") ; Set API_KEY in .bashrc, that will automatically picked up by aider or in elisp
|
||||||
|
;; (setenv "OPENROUTER_API_KEY" (my-get-openrouter-api-key)) ; defun my-get-openrouter-api-key yourself elsewhere for security reasons
|
||||||
|
:custom ; See the Configuration section below
|
||||||
|
(aidermacs-use-architect-mode t)
|
||||||
|
;; (aidermacs-default-model "sonnet")
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
(defvar my-C-f-funcs '())
|
(defvar my-C-f-funcs '())
|
||||||
(defun my-C-f ()
|
(defun my-C-f ()
|
||||||
(interactive)
|
(interactive)
|
||||||
|
|
|
@ -50,8 +50,10 @@
|
||||||
;; :recipe (:host github :repo "zerolfx/copilot.el" :files ("*.el" "dist")))
|
;; :recipe (:host github :repo "zerolfx/copilot.el" :files ("*.el" "dist")))
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
;; aidermacs
|
||||||
|
(package! aidermacs :recipe (:host github :repo "MatthewZMD/aidermacs" :branch "main"))
|
||||||
;; gptel
|
;; gptel
|
||||||
(package! gptel :recipe (:type git :host nil :repo "https://github.com/karthink/gptel.git" :branch "master"))
|
(package! gptel :recipe (:host github :repo "karthink/gptel" :branch "master"))
|
||||||
;; gptel-extensions
|
;; gptel-extensions
|
||||||
(package! gptel-extensions :recipe (:host github :repo "kamushadenes/gptel-extensions.el"))
|
(package! gptel-extensions :recipe (:host github :repo "kamushadenes/gptel-extensions.el"))
|
||||||
;; gptcommit
|
;; gptcommit
|
||||||
|
@ -64,7 +66,7 @@
|
||||||
|
|
||||||
(package! treesit-fold :recipe (:host github :repo "emacs-tree-sitter/treesit-fold"))
|
(package! treesit-fold :recipe (:host github :repo "emacs-tree-sitter/treesit-fold"))
|
||||||
(package! eglot-x :recipe (:host github :repo "nemethf/eglot-x"))
|
(package! eglot-x :recipe (:host github :repo "nemethf/eglot-x"))
|
||||||
(package! eglot-booster :recipe (:type git :host nil :repo "https://github.com/jdtsmith/eglot-booster.git" :branch "main"))
|
(package! eglot-booster :recipe (:host github :repo "jdtsmith/eglot-booster" :branch "main"))
|
||||||
|
|
||||||
(package! eat :recipe (:type git
|
(package! eat :recipe (:type git
|
||||||
:host codeberg
|
:host codeberg
|
||||||
|
|
Loading…
Add table
Reference in a new issue