From 7afa60ae9f38a9cf414c235ae3760bd25a6b5fc2 Mon Sep 17 00:00:00 2001 From: kj Date: Thu, 27 Aug 2026 14:39:45 -0300 Subject: [PATCH] feat(ai): Configure opencode with default model and UI preferences --- configs/init-ai.el | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/configs/init-ai.el b/configs/init-ai.el index 2b3743a..ae5103c 100644 --- a/configs/init-ai.el +++ b/configs/init-ai.el @@ -191,10 +191,17 @@ content do not break gptel-magit." :config (setq agent-shell-opencode-authentication (agent-shell-opencode-make-authentication :none t)) - (setq agent-shell-opencode-default-model-id nil) + (setq agent-shell-opencode-default-model-id "mimo-v2.5") - ;; Desactivar guardado de transcripciones - (setq agent-shell-transcript-file-path-function nil)) + ;; Header compacto + (setq agent-shell-header-style 'text) + + ;; Restaurar sesiones con texto completo + (setq agent-shell-session-restore-verbosity 'full) + + ;; Desactivar guardado de transcripciones y prompt al cerrar + (setq agent-shell-transcript-file-path-function nil) + (setq shell-maker-prompt-before-killing-buffer nil)) (provide 'init-ai) ;;; init-ai.el ends here