diff options
| author | tslil <tslil@posteo.de> | 2026-04-08 10:42:20 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-04-08 10:42:21 +0100 |
| commit | 92308157474ffa5ee966ce7ae2f875f38cb8d445 (patch) | |
| tree | cd0ee622ca25c8cbdf6e94236a89927a533fd8f9 /emacs | |
| parent | 0f3249a29430da447768871a49b4555e251a50d1 (diff) | |
[emacs] i don't use this llm stuff
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/inits/31-llm.el | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/emacs/inits/31-llm.el b/emacs/inits/31-llm.el deleted file mode 100644 index 7d0b9be..0000000 --- a/emacs/inits/31-llm.el +++ /dev/null @@ -1,28 +0,0 @@ -;; Time-stamp: <2025-08-22 23h24 BST (anker)> - -(use-package minuet - :ensure - :bind - (:map minuet-active-mode-map - ("M-p" . #'minuet-previous-suggestion) - ("M-n" . #'minuet-next-suggestion) - ("M-<tab>" . #'minuet-accept-suggestion) - ;; Accept the first line of completion, or N lines with a numeric-prefix: - ;; e.g. C-u 2 M-a will accepts 2 lines of completion. - ("M-e" . #'minuet-accept-suggestion-line) - ("M-a" . #'minuet-dismiss-suggestion) - ("C-g" . #'minuet-dismiss-suggestion)) - - :init - (add-hook 'prog-mode-hook #'minuet-auto-suggestion-mode) - - :config - (setq minuet-provider 'openai-compatible - minuet-auto-suggestion-debounce-delay 1 - minuet-n-completions 3 - minuet-context-window 2048) - - (plist-put minuet-openai-compatible-options :end-point "http://localhost:11434/v1/chat/completions") - (plist-put minuet-openai-compatible-options :name "Ollama") - (plist-put minuet-openai-compatible-options :api-key "TERM") - (plist-put minuet-openai-compatible-options :model "devstral:24b")) |
