Adding resizing window configuration for capture

This commit is contained in:
James Patrick 2024-01-22 14:34:31 -05:00
parent b47bcbfa54
commit 7926343cf3
No known key found for this signature in database
2 changed files with 16 additions and 0 deletions

View File

@ -159,3 +159,9 @@ See https://emacs.stackexchange.com/questions/63517/org-mode-evaluate-diff-code-
;(add-hook! 'org-mode-hook #'solaire-mode) ;(add-hook! 'org-mode-hook #'solaire-mode)
;(add-hook 'mixed-pitch-mode-hook #'solaire-mode-reset) ;(add-hook 'mixed-pitch-mode-hook #'solaire-mode-reset)
(setq +org-capture-frame-parameters '((name . "doom-capture")
(width . 100)
(height . 20)
(transient . t)
))

View File

@ -859,7 +859,17 @@ cat a.org
;(add-hook 'mixed-pitch-mode-hook #'solaire-mode-reset) ;(add-hook 'mixed-pitch-mode-hook #'solaire-mode-reset)
#+end_src #+end_src
** Capture
The default =+org-capture/open-frame= is a little small. Let's modify the parameters to make it a little larger
#+begin_src emacs-lisp :tangle "+orgmode.el" :noweb no-export :comments no
(setq +org-capture-frame-parameters '((name . "doom-capture")
(width . 100)
(height . 20)
(transient . t)
))
#+end_src
** ChatGPT ** ChatGPT
ChatGPT is good for creating short summaries about technical subjects. Its may be incorrect & does not produce citations, and is effectively just cargo culting, but may help me fill out some Roam docs quickly among other things. ChatGPT is good for creating short summaries about technical subjects. Its may be incorrect & does not produce citations, and is effectively just cargo culting, but may help me fill out some Roam docs quickly among other things.