aboutsummaryrefslogtreecommitdiff
path: root/home/programs/emacs/site-lisp/init-llm.el
diff options
context:
space:
mode:
Diffstat (limited to 'home/programs/emacs/site-lisp/init-llm.el')
-rw-r--r--home/programs/emacs/site-lisp/init-llm.el15
1 files changed, 15 insertions, 0 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