[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/ellama d9de354092 17/19: Add simple configuration examp
From: |
ELPA Syncer |
Subject: |
[elpa] externals/ellama d9de354092 17/19: Add simple configuration example to readme |
Date: |
Sun, 23 Feb 2025 06:58:09 -0500 (EST) |
branch: externals/ellama
commit d9de354092ae1267f5c0f5a91177b402bccf7294
Author: Sergey Kostyaev <sskostyaev@gmail.com>
Commit: Sergey Kostyaev <sskostyaev@gmail.com>
Add simple configuration example to readme
---
README.org | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/README.org b/README.org
index 205216a3dc..f33a4524e4 100644
--- a/README.org
+++ b/README.org
@@ -31,6 +31,19 @@ You can use ~ellama~ with other model or other llm provider.
Without any configuration, the first available ollama model will be used.
You can customize ellama configuration like this:
+#+BEGIN_SRC emacs-lisp
+ (use-package ellama
+ :ensure t
+ :bind ("C-c e" . ellama-transient-main-menu)
+ :config
+ ;; show ellama context in header line in all buffers
+ (ellama-context-header-line-global-mode +1)
+ ;; send last message in chat buffer with C-c C-c
+ (add-hook 'org-ctrl-c-ctrl-c-final-hook #'ellama-chat-send-last-message))
+#+END_SRC
+
+More sofisticated configuration example:
+
#+BEGIN_SRC emacs-lisp
(use-package ellama
:ensure t
@@ -99,7 +112,7 @@ You can customize ellama configuration like this:
;; show ellama context in header line in all buffers
(ellama-context-header-line-global-mode +1)
;; send last message in chat buffer with C-c C-c
- (add-hook 'org-ctrl-c-ctrl-c-hook #'ellama-chat-send-last-message))
+ (add-hook 'org-ctrl-c-ctrl-c-final-hook #'ellama-chat-send-last-message))
#+END_SRC
** Commands
- [elpa] externals/ellama f94002a405 15/19: Bump version, (continued)
- [elpa] externals/ellama f94002a405 15/19: Bump version, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 62364b5a4e 05/19: Add functionality to remove context elements by name, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 4340f71d75 06/19: Refactor `ellama-context-mode` to be a derived mode, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama ad88edf9ed 16/19: Merge pull request #238 from s-kostyaev/ux-improvements, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama fb01a0cefe 19/19: Merge pull request #241 from s-kostyaev/improve-readme, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 7e0b688d7f 03/19: Enhance transient model loading description, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 071f49f831 08/19: Add community prompt collection feature, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 8e26db91c8 11/19: Update menu item, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama a43bf8db31 13/19: Update ellama-community-prompts.el header, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 9d5b7046b3 14/19: Update package dependencies, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama d9de354092 17/19: Add simple configuration example to readme,
ELPA Syncer <=
- [elpa] externals/ellama 4bb90fcbd6 18/19: Update README for ellama provider description, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 0eac37ffe3 09/19: Add ellama-session-kill functionality, ELPA Syncer, 2025/02/23
- [elpa] externals/ellama 7ac470cc06 07/19: Enhance header line format handling in `ellama.el`, ELPA Syncer, 2025/02/23