diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-02-05 03:38:52 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-02-05 03:38:52 -0800 |
commit | 56faa5e9caf4408c2c4d6df50287c3b1c9e6c1b4 (patch) | |
tree | 188362e97ecfd0f935b1ac1efc1c3cfb00ef616e /config/emacs.el | |
parent | 990134fdcefe5a520b09ac6dfcaf97066fde6685 (diff) |
Finish automation of spontaneity cloud deployments
Diffstat (limited to 'config/emacs.el')
-rw-r--r-- | config/emacs.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/emacs.el b/config/emacs.el index 76c9eee..d3b251d 100644 --- a/config/emacs.el +++ b/config/emacs.el @@ -6,6 +6,7 @@ :custom ;; Startup errors (warning-minimum-level :emergency "Supress emacs warnings") + (confirm-kill-processes nil "Don't ask to quit") (debug-ignored-errors (cons 'remote-file-error debug-ignored-errors) "Remove annoying error from debug errors") ;; Mouse wheel @@ -20,10 +21,9 @@ (make-backup-files nil "Don't make backups") (display-fill-column-indicator-column 150 "Draw a line at 100 characters") (line-spacing 2 "Default line spacing") - - ;; Editor comments (c-doc-comment-style '((c-mode . doxygen) (c++-mode . doxygen))) + :hook ((text-mode . auto-fill-mode) (text-mode . visual-line-mode) (prog-mode . auto-fill-mode) @@ -429,7 +429,7 @@ (require 'llm-ollama) (setopt ellama-provider (make-llm-ollama :host "localhost" - :chat-model "deepseek-r1:14b"))) + :chat-model "phi4:latest"))) (use-package elfeed :custom |