diff --git a/README.org b/README.org index a52ed5d3..b87e0b4c 100644 --- a/README.org +++ b/README.org @@ -109,6 +109,7 @@ Let's start by making some basic ui changes like turning off the scrollbar, tool (setq comp-deferred-compilation-deny-list nil) (setq frame-resize-pixelwise t) +(set-frame-parameter nil 'undecorated t) #+end_src In order to have this config work on both my desktop with regular joe-schmoe monitors and my laptop with new-hotness HiDPI monitor, I will set the font size if my system is the laptop to much higher. @@ -2277,7 +2278,7 @@ GPTEL is a package that uses chatGPT to get some text generation in org-mode :host "ai.tfcconnection.org" :protocol "https" :stream t - :models '("llama3.2:3b-instruct-fp16")) + :models '("deepseek-r1")) gptel-default-mode #'org-mode) (setq gptel-directives '((default . "You are a large language model living in Emacs and a helpful assistant. Respond concisely.") diff --git a/init.el b/init.el index 05dcea1f..551f42de 100644 --- a/init.el +++ b/init.el @@ -21,6 +21,7 @@ (setq comp-deferred-compilation-deny-list nil) (setq frame-resize-pixelwise t) +(set-frame-parameter nil 'undecorated t) (if (string-equal (system-name) "syl") (defvar chris/default-font-size 120) @@ -1752,7 +1753,7 @@ Also see `chris/window-delete-popup-frame'." command) :host "ai.tfcconnection.org" :protocol "https" :stream t - :models '("llama3.2:3b-instruct-fp16")) + :models '("deepseek-r1")) gptel-default-mode #'org-mode) (setq gptel-directives '((default . "You are a large language model living in Emacs and a helpful assistant. Respond concisely.")