This commit is contained in:
Chris Cochrun 2025-02-03 09:22:55 -06:00
parent 5b05937cef
commit af5594a719
2 changed files with 4 additions and 2 deletions

View file

@ -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.")

View file

@ -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.")