Merge branch 'main' of git.zander.im:Zander671/emacs-config

This commit is contained in:
2024-03-06 11:40:35 -08:00
2 changed files with 17 additions and 16 deletions

16
init.el
View File

@ -1294,20 +1294,4 @@ buffers `helpful--sym' to `my/helpful-symbol-history'."
;; fun!
(use-package mines)
;; ai stuff (also mostly fun)
(use-package ellama
:defer nil
:custom
(ellama-sessions-directory (no-littering-expand-var-file-name
"ellama-sessions"))
(ellama-major-mode 'markdown-mode) ;; fix text inserting at top of buffer
(ellama-session-file-extension "md")
(ellama-nick-prefix "##")
(ellama-keymap-prefix "C-c m")
:hook (ellama-session-mode . my/-ellama-startup-hook)
:init
(defun my/-ellama-startup-hook ()
"Hook to do stuff in llama buffers."
(auto-fill-mode -1)))
;;; init.el ends here