emacs/lisp/icejam-aider.el
Maciej Szlosarczyk 4825f2328a
Some checks failed
/ Test config on 20 (push) Failing after 55s
Update 20260310
2026-03-10 08:59:04 +02:00

37 lines
1.2 KiB
EmacsLisp

;;; icejam-aider.el --- summary -*- lexical-binding: t; -*-
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Commentary:
;;; Copilot and other GPT stuff
;;; Code:
(use-package aidermacs :ensure (:host github :repo "MatthewZMD/aidermacs")
:defer t
:config
;; (setenv "OLLAMA_API_BASE" "http://127.0.0.1:11434")
(setenv "OLLAMA_API_BASE" "http://192.168.88.13:11434")
(setopt aidermacs-default-chat-mode 'architect)
(setopt aidermacs-default-model "ollama_chat/qwen3-coder:30b")
(setopt aider-extra-args (list "--model"
"ollama_chat/qwen3-coder:30b"
"--no-auto-commits"
"--no-analytics"
"--no-gitignore")))
(declare-function agent-shell-make-environment-variables 'agent-shell)
(use-package agent-shell
:ensure t
:ensure-system-package
;; Add agent installation configs here
((claude-agent-acp . "npm install -g @zed-industries/claude-agent-acp"))
:config
(setopt agent-shell-anthropic-claude-environment
(agent-shell-make-environment-variables :inherit-env t)))
(provide 'icejam-aider)
;;; icejam-aider.el ends here