Skip to content

Commit be48129

Browse files
committed
feat: add gptel-quick
1 parent aec2145 commit be48129

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

init.org

+7-2
Original file line numberDiff line numberDiff line change
@@ -3973,9 +3973,9 @@ Visual undo history navigation.
39733973
:functions
39743974
(gptel-make-ollama)
39753975
:bind
3976-
((:map leader-map
3976+
(:map leader-map
39773977
("g" . gptel-menu)
3978-
("G" . gptel)))
3978+
("G" . gptel))
39793979
:config
39803980
(setq gptel-model "llama3.1:latest")
39813981
(setq gptel-backend (gptel-make-ollama "Ollama"
@@ -3989,6 +3989,11 @@ Visual undo history navigation.
39893989
'(cli . "You are a large language model and a correct command line helper. Provide commands and only commands as output without any additional text, prompt or note.")
39903990
gptel-directives
39913991
:test #'equal))
3992+
3993+
(use-package gptel-quick
3994+
:ensure t
3995+
:bind
3996+
(:map help-map ("," . gptel-quick)))
39923997
#+end_src
39933998

39943999
* Testing

lock/flake.lock

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lock/flake.nix

+6
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,12 @@
359359
repo = "gptel";
360360
type = "github";
361361
};
362+
gptel-quick = {
363+
flake = false;
364+
owner = "karthink";
365+
repo = "gptel-quick";
366+
type = "github";
367+
};
362368
gradle-mode = {
363369
flake = false;
364370
owner = "scubacabra";

recipes/gptel-quick

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(gptel-quick :fetcher github
2+
:repo "karthink/gptel-quick")

0 commit comments

Comments
 (0)