diff options
| author | Franck Cuny <franck@fcuny.net> | 2026-01-03 11:07:35 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2026-01-03 11:07:35 -0800 |
| commit | ce05d9398d0df62c00888474e28026819defcd62 (patch) | |
| tree | 6452e1f2a43a92778eec6cef1a38f8af79b5761b /home/programs/emacs/site-lisp | |
| parent | configure the theme for bottom and bat (diff) | |
| download | infra-ce05d9398d0df62c00888474e28026819defcd62.tar.gz | |
configure aider and emacs properly
Use anthropic's models and set the API key.
Diffstat (limited to '')
| -rw-r--r-- | home/programs/emacs/site-lisp/init-llm.el | 15 | ||||
| -rw-r--r-- | home/programs/emacs/site-lisp/init-ui.el | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/home/programs/emacs/site-lisp/init-llm.el b/home/programs/emacs/site-lisp/init-llm.el new file mode 100644 index 0000000..bdd1804 --- /dev/null +++ b/home/programs/emacs/site-lisp/init-llm.el @@ -0,0 +1,15 @@ +;;; init-llm.el --- Configure LLMs -*- lexical-binding: t -*- +;; Author: Franck Cuny <franck@fcuny.net> + +;;; Commentary: + +;; Configure completions + +;;; Code: + +(use-package aider + :bind ("C-c a" . aider-transient-menu)) + +(provide 'init-llm) + +;;; init-llm.el ends here diff --git a/home/programs/emacs/site-lisp/init-ui.el b/home/programs/emacs/site-lisp/init-ui.el index 478028b..38d93e4 100644 --- a/home/programs/emacs/site-lisp/init-ui.el +++ b/home/programs/emacs/site-lisp/init-ui.el @@ -41,7 +41,7 @@ (modus-themes-region '()) :init - (load-theme 'modus-operandi-tinted t)) + (load-theme 'modus-vivendi-tinted t)) (provide 'init-ui) ;;; init-ui.el ends here |
